com.easypost.exception.EasyPostException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easypost-api-client Show documentation
Show all versions of easypost-api-client Show documentation
EasyPost Java Client Library for the EasyPost Shipping API
package com.easypost.exception;
public class EasyPostException extends Exception {
private static final long serialVersionUID = 1L;
private final String param;
public EasyPostException(String message) {
super(message, null);
this.param = null;
}
public EasyPostException(String message, Throwable e) {
super(message, e);
this.param = null;
}
public EasyPostException(String message, String param, Throwable e) {
super(message, e);
this.param = param;
}
public String getParam() {
return param;
}
}