servitor/engine/src/main/kotlin/wf/servitor/engine/exception/UnresolvedRemoteCallException.kt
2020-01-27 22:09:29 +01:00

9 lines
No EOL
370 B
Kotlin

package wf.servitor.engine.exception
class UnresolvedRemoteCallException(val service: String, val method: String, val arguments: List<Any?>, val index: Int) :
RuntimeException("Halted execution for external call", null, true, false) {
// Don't create a stack trace for this exception.
override fun fillInStackTrace(): Throwable {
return this
}
}