Class CheckstyleException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.puppycrawl.tools.checkstyle.api.CheckstyleException
- All Implemented Interfaces:
Serializable
Represents an error condition within Checkstyle.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final long
For serialization that will never happen. -
Constructor Summary
ConstructorsConstructorDescriptionCheckstyleException
(String message) Creates a newCheckstyleException
instance.CheckstyleException
(String message, Throwable cause) Creates a newCheckstyleException
instance that was caused by another exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
For serialization that will never happen.- See Also:
-
-
Constructor Details
-
CheckstyleException
Creates a newCheckstyleException
instance.- Parameters:
message
- aString
value
-
CheckstyleException
Creates a newCheckstyleException
instance that was caused by another exception.- Parameters:
message
- a message that explains this exceptioncause
- the Exception that is wrapped by this exception
-