CORDA-990: Flows Draining Mode (#2483)

[CORDA-990]: Flows draining mode.
This commit is contained in:
Michele Sollecito
2018-02-12 16:13:43 +00:00
committed by GitHub
parent fa4b5d16ba
commit da591363fd
38 changed files with 1044 additions and 183 deletions

View File

@ -0,0 +1,8 @@
package net.corda.nodeapi.exceptions
import net.corda.core.CordaRuntimeException
/**
* Thrown to indicate that the command was rejected by the node, typically due to a special temporary mode.
*/
class RejectedCommandException(msg: String) : CordaRuntimeException(msg)