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

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

There is a newer version: 0.46
Show newest version
package com.heroku.api.exception;

/**
 * Generic {@link RuntimeException} thrown when using heroku.jar.
 *
 * @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