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

cz.active24.client.fred.exception.FredClientException Maven / Gradle / Ivy

There is a newer version: 2.50
Show newest version
package cz.active24.client.fred.exception;

/**
 * Exception is parent of all exceptions in this project.
 */
public class FredClientException extends Exception {

    public FredClientException(String message){
        super(message);
    }

    public FredClientException(String message, Throwable throwable){
        super(message, throwable);
    }

    @Override
    public String getMessage() {
        return super.getMessage();
    }

    @Override
    public synchronized Throwable getCause() {
        return super.getCause();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy