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(status: nil, message: nil, headers: nil, **_options) ⇒ Base

Returns a new instance of Base.



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

def initialize(status: nil, message: nil, headers: nil, **_options)
  super(message)

  @status  = status
  @headers = headers
end

Instance Attribute Details

#headersObject (readonly)

Returns the value of attribute headers.



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

def headers
  @headers
end

#statusObject (readonly)

Returns the value of attribute status.



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

def status
  @status
end

Instance Method Details

#[](index) ⇒ Object



19
20
21
# File 'lib/grape/exceptions/base.rb', line 19

def [](index)
  send index
end