
com.lob.exception.LobException Maven / Gradle / Ivy
package com.lob.exception;
public abstract class LobException extends Exception {
private static final long serialVersionUID = 1L;
private Integer statusCode;
public LobException(String message, Integer statusCode) {
super(message, null);
this.statusCode = statusCode;
}
public LobException(String message, Integer statusCode, Throwable e) {
super(message, e);
this.statusCode = statusCode;
}
public Integer getStatusCode() {
return statusCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy