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

com.imiconnect.connect.core.ConnectException Maven / Gradle / Ivy

The newest version!
package com.imiconnect.connect.core;

import javax.annotation.Nullable;

/**
 * Generic exception that can be thrown from any of the clients when an unresolvable error occurs.
 */
public class ConnectException extends RuntimeException {

  public ConnectException(Throwable cause) {
    super(cause);
  }

  public ConnectException(String message) {
    this(message, null);
  }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy