school/cs240/record-indexer/src/client/communication/errors/RemoteServerErrorException....

21 lines
450 B
Java
Raw Normal View History

2016-04-06 20:50:11 -07:00
package client.communication.errors;
public class RemoteServerErrorException extends Exception {
public RemoteServerErrorException() {
}
public RemoteServerErrorException(String message) {
super(message);
}
public RemoteServerErrorException(Throwable throwable) {
super(throwable);
}
public RemoteServerErrorException(String message, Throwable throwable) {
super(message, throwable);
}
}