pinoss/feedbook

View on GitHub
lib/feedbook/errors/unsupported_notifier_error.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Feedbook
  module Errors
    class UnsupportedNotifierError < StandardError
      attr_reader :notifier

      def initialize(notifier, message)
        @notifier = notifier
        super(message)
      end
    end
  end
end