mirror of
https://github.com/corda/corda.git
synced 2025-06-23 01:19:00 +00:00
CORDA-3043 RPC Invocation fails when calling classes with defaulted constructors O/S (#5569)
* Fix for defaulted constructor arguments * Code changes from 4.3 applied to O/S * Detekt and code review
This commit is contained in:
committed by
Rick Parker
parent
7666ca0d80
commit
7a929f177c
@ -45,7 +45,6 @@ interface FlowLogicRefFactory {
|
||||
*
|
||||
* @property type the fully qualified name of the class that failed checks.
|
||||
*/
|
||||
@CordaSerializable
|
||||
class IllegalFlowLogicException(val type: String, msg: String) :
|
||||
IllegalArgumentException("A FlowLogicRef cannot be constructed for FlowLogic of type $type: $msg") {
|
||||
constructor(type: Class<*>, msg: String) : this(type.name, msg)
|
||||
|
Reference in New Issue
Block a user