no.mnemonic.services.common.api.ServiceTimeOutException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of service-api Show documentation
Show all versions of service-api Show documentation
Common basic API and interfaces for services
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;
}
}