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

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

package com.heroku.api.exception;

/**
 * TODO: Javadoc
 *
 * @author Naaman Newbold
 */
public class ParseException extends HerokuAPIException {
    public ParseException(String msg) {
        super(msg);
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy