Exception: Grape::Exceptions::Base

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

Direct Known Subclasses

ValidationError

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args = {}) ⇒ Base

Returns a new instance of Base.



6
7
8
9
10
# File 'lib/grape/exceptions/base.rb', line 6

def initialize(args = {})
  @status = args[:status] || nil
  @message = args[:message] || nil
  @headers = args[:headers] || nil
end

Instance Attribute Details

#headersObject (readonly)

Returns the value of attribute headers.



4
5
6
# File 'lib/grape/exceptions/base.rb', line 4

def headers
  @headers
end

#messageObject (readonly)

Returns the value of attribute message.



4
5
6
# File 'lib/grape/exceptions/base.rb', line 4

def message
  @message
end

#statusObject (readonly)

Returns the value of attribute status.



4
5
6
# File 'lib/grape/exceptions/base.rb', line 4

def status
  @status
end

Instance Method Details

#[](index) ⇒ Object



12
13
14
# File 'lib/grape/exceptions/base.rb', line 12

def [](index)
  self.send(index)
end