transcendental-lisp/src/main/kotlin/error/LispWarning.kt
2018-03-23 18:12:47 -04:00

9 lines
132 B
Kotlin

package error
import error.Severity.WARNING
abstract class LispWarning : LispException() {
override val severity = WARNING
}