Back to Intellij Community

UncheckedExceptionClass

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

2025.3-rc-2264 B
Original Source

Reports subclasses of java.lang.RuntimeException.

Some coding standards require that all user-defined exception classes are checked.

Example:

class EnigmaException extends RuntimeException {} // warning: Unchecked exception class 'EnigmaException'