Sage/handler_registerable

View on GitHub
lib/handler_registerable/exceptions/no_handler_accepted.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module HandlerRegisterable
  # Exceptions
  module Exceptions
    # Exception when no handler meets the conditions
    class NoHandlerAccepted < StandardError
      # Meaningful message when for this exception
      def message
        "No Handler Accepted"
      end
    end
  end
end