Exception: Dentaku::TokenizerError

Inherits:
StandardError
  • 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

Class Method Summary collapse

Instance Method Summary collapse

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, **meta)
  @reason = reason
  @meta = meta
end

Instance Attribute Details

#metaObject (readonly)

Returns the value of attribute meta.



49
50
51
# File 'lib/dentaku/exceptions.rb', line 49

def meta
  @meta
end

#reasonObject (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, **meta)
  unless VALID_REASONS.include?(reason)
    raise ::ArgumentError, "Unhandled #{reason}"
  end

  new reason, meta
end