Exception: Dentaku::ParseError
- Defined in:
- lib/dentaku/exceptions.rb
Constant Summary collapse
- VALID_REASONS =
%i[ node_invalid too_few_operands too_many_operands undefined_function unprocessed_token unknown_case_token unbalanced_bracket unbalanced_parenthesis unknown_grouping_token not_implemented_token_category invalid_statement ].freeze
Instance Attribute Summary collapse
-
#meta ⇒ Object
readonly
Returns the value of attribute meta.
-
#reason ⇒ Object
readonly
Returns the value of attribute reason.
Attributes inherited from Error
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(reason, **meta) ⇒ ParseError
constructor
A new instance of ParseError.
Constructor Details
#initialize(reason, **meta) ⇒ ParseError
Returns a new instance of ParseError.
36 37 38 39 |
# File 'lib/dentaku/exceptions.rb', line 36 def initialize(reason, **) @reason = reason @meta = end |
Instance Attribute Details
#meta ⇒ Object (readonly)
Returns the value of attribute meta.
34 35 36 |
# File 'lib/dentaku/exceptions.rb', line 34 def @meta end |
#reason ⇒ Object (readonly)
Returns the value of attribute reason.
34 35 36 |
# File 'lib/dentaku/exceptions.rb', line 34 def reason @reason end |
Class Method Details
.for(reason, **meta) ⇒ Object
50 51 52 53 54 55 56 |
# File 'lib/dentaku/exceptions.rb', line 50 def self.for(reason, **) unless VALID_REASONS.include?(reason) raise ::ArgumentError, "Unhandled #{reason}" end new(reason, **) end |