blob: b5ad163727fa318adfdc1ec1663e44419d4bf466 (
plain) (
blame)
1
2
3
4
5
6
7
|
package exceptions
/**
* Gets thrown if the syntax is wrong
*/
class SyntaxError(description: String, context: String, lineNumber: Int)
: Exception("Unexpected $description at line $lineNumber: $context")
|