cocaine.ServiceErrorException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cocaine-client Show documentation
Show all versions of cocaine-client Show documentation
Client for Cocaine Application Engine.
The newest version!
package cocaine;
/**
* @author Anton Bobukh
*/
public class ServiceErrorException extends ServiceException {
private final int code;
public ServiceErrorException(String service, String message, int code) {
super(service, code + " - " + message);
this.code = code;
}
public int getCode() {
return code;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy