com.sc.base.api.BaseException Maven / Gradle / Ivy
The newest version!
package com.sc.base.api;
public class BaseException extends Exception {
private String code;
public BaseException(String code, String message) {
super(message);
this.code = code;
}
public BaseException(String code, Throwable cause) {
super(cause);
this.code = code;
}
public BaseException(String code, String message, Throwable cause) {
super(message, cause);
this.code = code;
}
public String getCode() {
return this.code;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy