You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
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
}
}