class ShuntingYard::UnknownParenthesisError

Public Class Methods

new(token) click to toggle source
Calls superclass method
# File lib/shunting_yard/errors.rb, line 35
def initialize(token)
  super "Token '#{token}' is not a parenthesis"
end