Exception: Dentaku::ParseError

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(reason, **meta) ⇒ ParseError

Returns a new instance of ParseError.



28
29
30
31
# File 'lib/dentaku/exceptions.rb', line 28

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

Instance Attribute Details

#metaObject (readonly)

Returns the value of attribute meta.



26
27
28
# File 'lib/dentaku/exceptions.rb', line 26

def meta
  @meta
end

#reasonObject (readonly)

Returns the value of attribute reason.



26
27
28
# File 'lib/dentaku/exceptions.rb', line 26

def reason
  @reason
end

Class Method Details

.for(reason, **meta) ⇒ Object



42
43
44
45
46
47
48
# File 'lib/dentaku/exceptions.rb', line 42

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

  new(reason, **meta)
end