一、问题来源先看下面的自定义Exception代码: package xxx; public class BusinessException extends RuntimeException { private static final long serialVersionUID = -xxxxL; public BusinessException(String message, Throwable cause) { super(message, cause); } public BusinessException(String message) { super(message); } pub...