package cn.mb.cloud.auth.security.exception; import cn.mb.cloud.auth.security.component.MbCloudAuth2ExceptionSerializer; import com.fasterxml.jackson.databind.annotation.JsonSerialize; import org.springframework.http.HttpStatus; /** * @author jason */ @JsonSerialize(using = MbCloudAuth2ExceptionSerializer.class) public class ServerErrorException extends MbCloudAuth2Exception { public ServerErrorException(String msg, Throwable t) { super(msg); } @Override public String getOAuth2ErrorCode() { return "server_error"; } @Override public int getHttpErrorCode() { return HttpStatus.INTERNAL_SERVER_ERROR.value(); } }