Make the core Java library in the dolda.dolcon.protocol package instead.
[doldaconnect.git] / lib / java / dolda / dolcon / protocol / ClosedException.java
... / ...
CommitLineData
1package dolda.dolcon.protocol;
2
3public class ClosedException extends Exception {
4 public ClosedException(Throwable cause) {
5 super("DC connection has been closed", cause);
6 }
7
8 public ClosedException() {
9 this(null);
10 }
11}