blob: f198755061212756a36661b05724f943e6bba2db (
plain) (
blame)
1
2
3
4
5
6
|
package exceptions
/**
* Gets thrown if the entered token/code has semantic errors
*/
class SemanticError(type: String = "", token: String = "") : Exception("$type: $token")
|