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 longFor serialization that will never happen. - 
Constructor Summary
ConstructorsConstructorDescriptionCheckstyleException(String message) Creates a newCheckstyleExceptioninstance.CheckstyleException(String message, Throwable cause) Creates a newCheckstyleExceptioninstance 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 newCheckstyleExceptioninstance.- Parameters:
 message- aStringvalue
 - 
CheckstyleException
Creates a newCheckstyleExceptioninstance that was caused by another exception.- Parameters:
 message- a message that explains this exceptioncause- the Exception that is wrapped by this exception
 
 -