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

com.heroku.api.exception.HerokuAPIException Maven / Gradle / Ivy

package com.heroku.api.exception;

/**
 * TODO: Enter JavaDoc
 *
 * @author Naaman Newbold
 */
public class HerokuAPIException extends RuntimeException {


    public HerokuAPIException(String msg) {
        super(msg);
    }

    public HerokuAPIException(Throwable throwable) {
        super(throwable);
    }

    public HerokuAPIException(String msg, Throwable throwable) {
        super(msg, throwable);
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy