TooGenericExceptionThrown: RuntimeException is a too generic Exception. Prefer throwing specific ...

翻译过来意思是

RuntimeException是一个太泛型的异常。建议抛出特定的异常,以指示特定的错误情况。

也就是说我们自定义异常需要更细化了,那么让我们看看都有哪些异常

  • IllegalArgumentException 非法参数异常
  • IllegalStateException 状态异常,Java环境或Java应用程序处于不适合所请求操作的状态
  • IndexOutOfBoundsException 数组索引越界异常
  • UnsupportedOperationException 不支持的操作异常
  • ArithmeticException 出现异常的运算条件时,抛出此异常
  • NumberFormatException 数字格式化异常
  • NullPointerException 空指针异常
  • ClassCastException 类型转换错误
  • AssertionError 错误非异常
  • ClassNotFoundException 找不到类异常
  • ConcurrentModificationException 当方法检测到对象的并发修改,但不允许这种修改时,抛出此异常。

你可能感兴趣的:(TooGenericExceptionThrown: RuntimeException is a too generic Exception. Prefer throwing specific ...)