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

21 lines
450 B
Java

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);
}
}