Back to Intellij Community

ObjectInheritsException

plugins/kotlin/code-insight/descriptions/resources-en/inspectionDescriptions/ObjectInheritsException.html

2025.3-rc-2243 B
Original Source

Reports object inherited from Exception because exceptions are inherently stateful, containing information like the stacktrace.

Example:

object MyEx: Exception()

After the quick-fix is applied:

class MyEx: Exception()