Exception: Dentaku::TokenizerError

Inherits:
Error
  • Object
show all
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

Attributes inherited from Error

#recipient_variable

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(reason, **meta) ⇒ TokenizerError

Returns a new instance of TokenizerError.



62
63
64
65
# File 'lib/dentaku/exceptions.rb', line 62

def initialize(reason, **meta)
  @reason = reason
  @meta = meta
end

Instance Attribute Details

#metaObject (readonly)

Returns the value of attribute meta.



60
61
62
# File 'lib/dentaku/exceptions.rb', line 60

def meta
  @meta
end

#reasonObject (readonly)

Returns the value of attribute reason.



60
61
62
# File 'lib/dentaku/exceptions.rb', line 60

def reason
  @reason
end

Class Method Details

.for(reason, **meta) ⇒ Object



74
75
76
77
78
79
80
# File 'lib/dentaku/exceptions.rb', line 74

def self.for(reason, **meta)
  unless VALID_REASONS.include?(reason)
    raise ::ArgumentError, "Unhandled #{reason}"
  end

  new(reason, **meta)
end