Exception: IgniterLang::TemporalAccessRuntime::BackendContractError
- Inherits:
-
StandardError
- Object
- StandardError
- IgniterLang::TemporalAccessRuntime::BackendContractError
- Defined in:
- lib/igniter_lang/temporal_access_runtime.rb
Instance Attribute Summary collapse
-
#axis ⇒ Object
readonly
Returns the value of attribute axis.
-
#method_name ⇒ Object
readonly
Returns the value of attribute method_name.
Instance Method Summary collapse
-
#initialize(method_name, axis) ⇒ BackendContractError
constructor
A new instance of BackendContractError.
Constructor Details
#initialize(method_name, axis) ⇒ BackendContractError
Returns a new instance of BackendContractError.
112 113 114 115 116 |
# File 'lib/igniter_lang/temporal_access_runtime.rb', line 112 def initialize(method_name, axis) @method_name = method_name @axis = axis super("temporal access backend must implement #{method_name} for #{axis}") end |
Instance Attribute Details
#axis ⇒ Object (readonly)
Returns the value of attribute axis.
110 111 112 |
# File 'lib/igniter_lang/temporal_access_runtime.rb', line 110 def axis @axis end |
#method_name ⇒ Object (readonly)
Returns the value of attribute method_name.
110 111 112 |
# File 'lib/igniter_lang/temporal_access_runtime.rb', line 110 def method_name @method_name end |