win.doyto.query.web.response.ErrorCodeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of doyto-query-web Show documentation
Show all versions of doyto-query-web Show documentation
The web layer integrate with Spring Web
// Generated by delombok at Sat Apr 04 14:54:36 CST 2020
package win.doyto.query.web.response;
/**
* BusinessException
*
* @author f0rb on 2017-03-19.
*/
public class ErrorCodeException extends RuntimeException {
private final ErrorCode errorCode;
public ErrorCodeException(ErrorCode errorCode) {
super(errorCode.getMessage());
this.errorCode = errorCode;
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public ErrorCode getErrorCode() {
return this.errorCode;
}
}