Exception: Little::Error

Inherits:
StandardError
  • Object
show all
Defined in:
lib/little/error.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(code, data) ⇒ Error

Returns a new instance of Error.



4
5
6
7
# File 'lib/little/error.rb', line 4

def initialize(code, data)
  @code = code
  @data = data
end

Instance Attribute Details

#codeObject

Returns the value of attribute code.



3
4
5
# File 'lib/little/error.rb', line 3

def code
  @code
end

#dataObject

Returns the value of attribute data.



3
4
5
# File 'lib/little/error.rb', line 3

def data
  @data
end