Exception: Evervault::Errors::FunctionRuntimeError
- Inherits:
-
FunctionError
- Object
- StandardError
- EvervaultError
- FunctionError
- Evervault::Errors::FunctionRuntimeError
- Defined in:
- lib/evervault/errors/errors.rb
Instance Attribute Summary collapse
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#message ⇒ Object
readonly
Returns the value of attribute message.
-
#stack ⇒ Object
readonly
Returns the value of attribute stack.
Instance Method Summary collapse
-
#initialize(message, stack, id) ⇒ FunctionRuntimeError
constructor
A new instance of FunctionRuntimeError.
Constructor Details
#initialize(message, stack, id) ⇒ FunctionRuntimeError
Returns a new instance of FunctionRuntimeError.
18 19 20 21 22 23 |
# File 'lib/evervault/errors/errors.rb', line 18 def initialize(, stack, id) @message = @stack = stack @id = id super(.to_s) end |
Instance Attribute Details
#id ⇒ Object (readonly)
Returns the value of attribute id.
16 17 18 |
# File 'lib/evervault/errors/errors.rb', line 16 def id @id end |
#message ⇒ Object (readonly)
Returns the value of attribute message.
16 17 18 |
# File 'lib/evervault/errors/errors.rb', line 16 def @message end |
#stack ⇒ Object (readonly)
Returns the value of attribute stack.
16 17 18 |
# File 'lib/evervault/errors/errors.rb', line 16 def stack @stack end |