blob: 08e11d15fce99aefac970cef2a35fe1ad8950a2c [file] [log] [blame]
package chip.appserver;
public class ChipAppServerException extends RuntimeException {
private static final long serialVersionUID = 1L;
public int errorCode;
public ChipAppServerException() {}
public ChipAppServerException(int errorCode, String message) {
super(message != null ? message : String.format("Error Code %d", errorCode));
this.errorCode = errorCode;
}
}