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

no.mnemonic.services.common.api.ServiceTimeOutException Maven / Gradle / Ivy

There is a newer version: 0.6.11
Show newest version
package no.mnemonic.services.common.api;

public class ServiceTimeOutException extends RuntimeException {

  private static final long serialVersionUID = 3330507181521367099L;

  private final String interfaceClassName;

  public ServiceTimeOutException(String message, String interfaceClassName) {
    super(message);
    this.interfaceClassName = interfaceClassName;
  }

  public String getInterfaceClassName() {
    return interfaceClassName;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy