fabric-samples/off_chain_data/application-java/app/src/main/java/ExpectedException.java
Mark S. Lewis 636a273a48
Java off-chain data store sample using Fabric Gateway (#749)
Also minor implementation changes to TypeScript sample for better consistency between implementations.

Signed-off-by: Mark S. Lewis <mark_lewis@uk.ibm.com>
2022-05-26 13:42:41 +01:00

11 lines
237 B
Java

/*
* Copyright IBM Corp. All Rights Reserved.
*
* SPDX-License-Identifier: Apache-2.0
*/
public class ExpectedException extends RuntimeException {
public ExpectedException(final String message) {
super(message);
}
}