mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
Fixed : Message value in NotaryException is always null (#470)
This commit is contained in:
parent
f15a22d828
commit
c7e5cf5079
@ -159,9 +159,7 @@ object NotaryFlow {
|
||||
*/
|
||||
data class TransactionParts(val id: SecureHash, val inputs: List<StateRef>, val timestamp: Timestamp?)
|
||||
|
||||
class NotaryException(val error: NotaryError) : FlowException() {
|
||||
override fun toString() = "${super.toString()}: Error response from Notary - $error"
|
||||
}
|
||||
class NotaryException(val error: NotaryError) : FlowException("Error response from Notary - $error")
|
||||
|
||||
@CordaSerializable
|
||||
sealed class NotaryError {
|
||||
|
Loading…
Reference in New Issue
Block a user