Exception: Grape::Exceptions::Base

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

Constant Summary collapse

BASE_MESSAGES_KEY =
'grape.errors.messages'
BASE_ATTRIBUTES_KEY =
'grape.errors.attributes'
FALLBACK_LOCALE =
:en

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args = {}) ⇒ Base

Returns a new instance of Base.



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

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.



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

def headers
  @headers
end

#messageObject (readonly)

Returns the value of attribute message.



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

def message
  @message
end

#statusObject (readonly)

Returns the value of attribute status.



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

def status
  @status
end

Instance Method Details

#[](index) ⇒ Object



16
17
18
# File 'lib/grape/exceptions/base.rb', line 16

def [](index)
  send index
end