CORDA-990 - Flows Draining Mode (#2507)

* [CORDA-990]: Flows Draining Mode

* Fixed incorrect disconnect login.

* Code review changes.

* Fixed compilation error about MockNetwork...

* Fixed compilation error about MockNetwork...

* Fixed broken compilation.

* Ignoring an unstable test.
This commit is contained in:
Michele Sollecito
2018-02-13 09:34:10 +00:00
committed by Katelyn Baker
parent e363090f30
commit fbb7f8f019
36 changed files with 1012 additions and 170 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)