class Marfa::Exceptions::PagesRangeError
Pages range error
Attributes
redirect_page_to[R]
Public Class Methods
new(msg = 'Page is out of range', redirect_page_to = 1)
click to toggle source
Calls superclass method
# File lib/marfa/exceptions.rb, line 9 def initialize(msg = 'Page is out of range', redirect_page_to = 1) @redirect_page_to = redirect_page_to super(msg) end