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

cocaine.ServiceErrorException Maven / Gradle / Ivy

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