io.contek.zeus.server.errors.ExchangeTemporaryErrorException Maven / Gradle / Ivy
package io.contek.zeus.server.errors;
import javax.annotation.Nullable;
import javax.annotation.concurrent.NotThreadSafe;
/**
* Exception to throw when service is temporarily unavailable. Only throw this if it is a readonly
* operation, or if the results of write operation attempts do not accumulate.
*/
@NotThreadSafe
public abstract class ExchangeTemporaryErrorException extends ExchangeException {
public ExchangeTemporaryErrorException(@Nullable String message) {
super(message);
}
public ExchangeTemporaryErrorException(@Nullable Throwable cause) {
super(cause);
}
public ExchangeTemporaryErrorException(@Nullable String message, @Nullable Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy