v0.7.0: imports and stuff

This commit is contained in:
Sergey Chernov 2025-07-04 01:00:20 +03:00
parent f37354f382
commit 868379ce22
2 changed files with 4 additions and 2 deletions

View File

@ -4,7 +4,7 @@ import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
group = "net.sergeych"
version = "0.6.9-SNAPSHOT"
version = "0.7.0-SNAPSHOT"
buildscript {
repositories {

View File

@ -13,3 +13,5 @@ open class ScriptError(val pos: Pos, val errorMessage: String,cause: Throwable?=
)
class ExecutionError(val errorObject: ObjException) : ScriptError(errorObject.scope.pos, errorObject.message)
class ImportException(pos: Pos, message: String) : ScriptError(pos, message)