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

io.infinicast.client.api.errors.ICException Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package io.infinicast.client.api.errors;

public class ICException extends RuntimeException  {
    ICError _error;
    public ICException(ICError error) {
        super(error.toString());
        this.setError(error);
    }
    public String toString() {
        return super.getMessage();
    }
    public ICError getError() {
        return this._error;
    }
    public void setError(ICError value) {
        this._error = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy