com.heroku.sdk.deploy.api.HerokuDeployApiException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of heroku-deploy Show documentation
Show all versions of heroku-deploy Show documentation
Library for deploying Java applications to Heroku
package com.heroku.sdk.deploy.api;
public class HerokuDeployApiException extends Exception {
public HerokuDeployApiException(String message) {
super(message);
}
public HerokuDeployApiException(String message, Throwable cause) {
super(message, cause);
}
}