blob: 952187edbe46efba39d92b10d7d05ef6012f2c6a (
plain) (
blame)
1
2
3
4
5
6
7
8
|
package exceptions
import Token
/**
* Gets thrown if the syntax is wrong
*/
class SyntaxError(context: Token) : Exception("Unexpected ${context.type}: ${context.content}")
|