BadRequestException.java 320 Bytes RawBlameHistoryPermalink 1 2 3 4 5 6 7 8 9 10 11 12 package com.pipi.qa.framework.exception; import org.springframework.http.HttpStatus; /** * 客户端非法请求异常(如:请求参数格式不正确等) {@link HttpStatus#BAD_REQUEST} */ public class BadRequestException extends RuntimeException { public BadRequestException() { super("非法请求."); } }