Back to Intellij Community

CheckedExceptionClass

java/java-impl/resources/inspectionDescriptions/CheckedExceptionClass.html

2025.3-rc-2280 B
Original Source

Reports checked exception classes (that is, subclasses of java.lang.Exception that are not subclasses of java.lang.RuntimeException).

Some coding standards suppress checked user-defined exception classes.

Example:

class IllegalMoveException extends Exception {}