frozeek/xhive

View on GitHub
lib/xhive/router/error.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Xhive
  module Router
    class Error < StandardError
      def initialize(action)
        @action = action
        super
      end

      def message
        "No route was found for action #{@action}"
      end
    end
  end
end