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

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

package io.contek.zeus.server.errors;

import javax.annotation.Nullable;
import javax.annotation.concurrent.NotThreadSafe;

@NotThreadSafe
public final class ExchangeServiceUnavailableException extends ExchangeTemporaryErrorException {

  public ExchangeServiceUnavailableException(@Nullable String message) {
    super(message);
  }

  public ExchangeServiceUnavailableException(@Nullable Throwable cause) {
    super(cause);
  }

  public ExchangeServiceUnavailableException(@Nullable String message, @Nullable Throwable cause) {
    super(message, cause);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy