aboutsummaryrefslogtreecommitdiff
path: root/src/runMain/kotlin/exceptions/SyntaxError.kt
blob: 8609d384bace33b77283c36a3a150d1ceeddf61a (plain) (blame)
1
2
3
4
5
6
package exceptions

/**
 * Gets thrown if the syntax is wrong
 */
class SyntaxError(description: String, context: String) : Exception("Unexpected $description: $context")