13 lines
281 B
Java
13 lines
281 B
Java
package eu.ztsh.wymiana.exception;
|
|
|
|
public class ExchangeFailedException extends RuntimeException {
|
|
|
|
public ExchangeFailedException() {
|
|
this("An exchange error has occurred");
|
|
}
|
|
|
|
public ExchangeFailedException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
}
|