blob: 0596f525648310051c1827e2d470fd6884a428a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
package exceptions
import TokenType
/**
* Gets thrown if the syntax is wrong
*/
class SyntaxError(context: Pair<String, TokenType>) : Exception("Unexpected ${context.second}: ${context.first}")
|