io.gitlab.arturbosch.detekt.test.KotlinScriptException.kt Maven / Gradle / Ivy
package io.gitlab.arturbosch.detekt.test
import javax.script.ScriptException
/**
* The generic exception class for the Kotlin script engine APIs.
* Exception types thrown by the underlying scripting implementations are wrapped in instances of
* KotlinScriptException.
*/
class KotlinScriptException(e: ScriptException) : RuntimeException("Given Kotlin code is invalid.", e)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy