All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.contek.zeus.server.errors.ExchangeTemporaryErrorException Maven / Gradle / Ivy

There is a newer version: 2.29.0
Show newest version
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