summaryrefslogtreecommitdiffstats
path: root/src/main/java/derms/replica2/AlreadyBorrowedException.java
blob: e1146e7e2af383742e7c7825b9720e25afac392c (plain) (blame)
1
2
3
4
5
6
7
package derms.replica2;

class AlreadyBorrowedException extends Exception {
  AlreadyBorrowedException(String message) {
    super(message);
  }
}