Exception: Trust::AccessDenied

Inherits:
StandardError
  • Object
show all
Defined in:
lib/trust/exceptions.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message = nil, action = nil, subject = nil) ⇒ AccessDenied

Returns a new instance of AccessDenied.



34
35
36
37
38
39
# File 'lib/trust/exceptions.rb', line 34

def initialize(message = nil, action = nil, subject = nil)
  @message = message
  @action = action
  @subject = subject
  @default_message = I18n.t(:"unauthorized.default", :default => "You are not authorized to access this page.")
end

Instance Attribute Details

#actionObject (readonly)

Returns the value of attribute action.



31
32
33
# File 'lib/trust/exceptions.rb', line 31

def action
  @action
end

#default_message=(value) ⇒ Object (writeonly)

Sets the attribute default_message

Parameters:

  • value

    the value to set the attribute default_message to.



32
33
34
# File 'lib/trust/exceptions.rb', line 32

def default_message=(value)
  @default_message = value
end

#subjectObject (readonly)

Returns the value of attribute subject.



31
32
33
# File 'lib/trust/exceptions.rb', line 31

def subject
  @subject
end

Instance Method Details

#to_sObject



41
42
43
# File 'lib/trust/exceptions.rb', line 41

def to_s
  @message || @default_message
end