//自定义异常public class CustomExpection extends RuntimeException{ //设置 public CustomExpection(String msg) { super(msg); }}