Class Mack::Errors::FilterChainHalted
In: lib/mack/errors/errors.rb
Parent: StandardError

Raised if a Mack::Controller::Filter returns false.

Methods

new  

Public Class methods

Takes the name of the filter that returned false.

[Source]

    # File lib/mack/errors/errors.rb, line 78
78:       def initialize(filter)
79:         super("The fitler chain was halted because of filter: '#{filter}'")
80:       end

[Validate]