Exception: Dentaku::TokenizerError
- Inherits:
-
StandardError
- Object
- StandardError
- Dentaku::TokenizerError
- Defined in:
- lib/dentaku/exceptions.rb
Constant Summary collapse
- VALID_REASONS =
%i[ parse_error too_many_opening_parentheses too_many_closing_parentheses unexpected_zero_width_match ].freeze
Instance Attribute Summary collapse
-
#meta ⇒ Object
readonly
Returns the value of attribute meta.
-
#reason ⇒ Object
readonly
Returns the value of attribute reason.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(reason, **meta) ⇒ TokenizerError
constructor
A new instance of TokenizerError.
Constructor Details
#initialize(reason, **meta) ⇒ TokenizerError
Returns a new instance of TokenizerError.
51 52 53 54 |
# File 'lib/dentaku/exceptions.rb', line 51 def initialize(reason, **) @reason = reason @meta = end |
Instance Attribute Details
#meta ⇒ Object (readonly)
Returns the value of attribute meta.
49 50 51 |
# File 'lib/dentaku/exceptions.rb', line 49 def @meta end |
#reason ⇒ Object (readonly)
Returns the value of attribute reason.
49 50 51 |
# File 'lib/dentaku/exceptions.rb', line 49 def reason @reason end |
Class Method Details
.for(reason, **meta) ⇒ Object
63 64 65 66 67 68 69 |
# File 'lib/dentaku/exceptions.rb', line 63 def self.for(reason, **) unless VALID_REASONS.include?(reason) raise ::ArgumentError, "Unhandled #{reason}" end new reason, end |