Commit eaddfac7 authored by 董建华's avatar 董建华

返回异常的时候不用双引号

parent 0dbb4e47
...@@ -31,7 +31,7 @@ import java.util.Set; ...@@ -31,7 +31,7 @@ import java.util.Set;
@RestController @RestController
public class ExceptionHandlingController implements IBaseController { public class ExceptionHandlingController implements IBaseController {
private static final JsonResult EXCEPTION_RESULT = new JsonResult("internal error", (long) HttpStatus.INTERNAL_SERVER_ERROR.value(), ""); private static final JsonResult EXCEPTION_RESULT = new JsonResult("internal error", (long) HttpStatus.INTERNAL_SERVER_ERROR.value(), null);
/** /**
* 密码错误次数达到上限异常 * 密码错误次数达到上限异常
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment