BaseException.java
366 Bytes
package com.wondertek.exception;
public class BaseException extends RuntimeException{
private static final long serialVersionUID = 4738191554323702328L;
protected final String code;
public String getCode() {
return code;
}
public BaseException(String code, String msg) {
super(msg);
this.code = code;
}
}