Class: Hocon::Impl::Tokens::Problem
Instance Method Summary collapse
-
#initialize(origin, what, message, suggest_quotes, cause) ⇒ Problem
constructor
A new instance of Problem.
Constructor Details
#initialize(origin, what, message, suggest_quotes, cause) ⇒ Problem
Returns a new instance of Problem.
73 74 75 76 77 78 79 |
# File 'lib/hocon/impl/tokens.rb', line 73 def initialize(origin, what, , suggest_quotes, cause) super(TokenType::PROBLEM, origin) @what = what = @suggest_quotes = suggest_quotes @cause = cause end |