transcendental-lisp/src/main/kotlin/error/LispWarning.kt

9 lines
132 B
Kotlin
Raw Normal View History

2018-03-18 12:45:57 -04:00
package error
import error.Severity.WARNING
abstract class LispWarning : LispException() {
override val severity = WARNING
}