Skip to content

Commit 52c773b

Browse files
committed
Added new exception for when a transaction with supplied ID does not exists
1 parent cded4e9 commit 52c773b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package com.bigchaindb.exceptions;
2+
3+
public class TransactionNotFoundException extends Exception {
4+
5+
public TransactionNotFoundException(String message) {
6+
super(message);
7+
}
8+
}

0 commit comments

Comments
 (0)