class Samovar::InvalidInputError

def help?

def help?
	self.token == "--help"
end

def initialize(command, input)

def initialize(command, input)
	@command = command
	@input = input
	
	super "Could not parse token #{input.first.inspect}"
end

def token

def token
	@input.first
end