We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a45a411 commit aadf8a7Copy full SHA for aadf8a7
exonum-java-binding/core/src/main/java/com/exonum/binding/core/service/TransactionConverter.java
@@ -39,8 +39,9 @@ public interface TransactionConverter {
39
* @param arguments the {@linkplain TransactionMessage#getPayload() serialized transaction
40
* arguments}
41
* @return an executable transaction of the service
42
- * @throws IllegalArgumentException if the raw transaction is malformed or not known
43
- * to the service
+ * @throws IllegalArgumentException if the transaction is not known to the service,
+ * or the arguments are not valid: e.g., cannot be deserialized, or do not meet
44
+ * the preconditions
45
*/
46
Transaction toTransaction(int txId, byte[] arguments);
47
}
0 commit comments