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

com.harrys.hyppo.client.v1.error.HyppoClientException Maven / Gradle / Ivy

The newest version!
package com.harrys.hyppo.client.v1.error;

import java.io.IOException;

/**
 * Created by jpetty on 12/21/15.
 */
public class HyppoClientException extends IOException {

    public HyppoClientException(){
        this(null, null);
    }

    public HyppoClientException(final String message){
        this(message, null);
    }

    public HyppoClientException(final Throwable cause){
        this(null, cause);
    }

    public HyppoClientException(final String message, final Throwable cause){
        super(message, cause);
    }

    @Override
    public String toString(){
        return this.getClass().getName() + ": " + this.getMessage();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy