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

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