com.puppycrawl.tools.checkstyle.api

Class CheckstyleException

public class CheckstyleException extends Exception

Represents an error condition within Checkstyle.

Version: 1.0

Author: Oliver Burn

Constructor Summary
CheckstyleException(String aMessage)
Creates a new CheckstyleException instance.
CheckstyleException(String aMessage, Throwable aCause)
Creates a new CheckstyleException instance that was caused by another exception.

Constructor Detail

CheckstyleException

public CheckstyleException(String aMessage)
Creates a new CheckstyleException instance.

Parameters: aMessage a String value

CheckstyleException

public CheckstyleException(String aMessage, Throwable aCause)
Creates a new CheckstyleException instance that was caused by another exception.

Parameters: aMessage a message that explains this exception aCause the Exception that is wrapped by this exception