Exception: Krill::KrillSyntaxError
- Inherits:
-
KrillBaseError
- Object
- StandardError
- KrillBaseError
- Krill::KrillSyntaxError
- Defined in:
- lib/krill/protocol_sandbox.rb
Overview
Exception class for protocol syntax errors
Instance Attribute Summary
Attributes inherited from KrillBaseError
#error, #namespace, #operation_type
Instance Method Summary collapse
-
#initialize(operation_type:, error:, message: 'Syntax error in operation type') ⇒ KrillSyntaxError
constructor
Create a KrillSyntaxError object indicating an error in the given operation type.
Methods inherited from KrillBaseError
#error_backtrace, #error_message, #operation_path
Constructor Details
#initialize(operation_type:, error:, message: 'Syntax error in operation type') ⇒ KrillSyntaxError
Create a KrillSyntaxError object indicating an error in the given operation type.
239 240 241 |
# File 'lib/krill/protocol_sandbox.rb', line 239 def initialize(operation_type:, error:, message: 'Syntax error in operation type') super(operation_type: operation_type, error: error, message: ) end |