Package net.sourceforge.pmd
Class PMDException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- net.sourceforge.pmd.PMDException
-
- All Implemented Interfaces:
Serializable
@Deprecated public class PMDException extends Exception
Deprecated.A convenience exception wrapper. Contains the original exception, if any. Also, contains a severity number (int). Zero implies no severity. The higher the number the greater the severity.- Since:
- August 30, 2002
- Version:
- $Revision$, $Date$
- Author:
- Donald A. Leckie
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PMDException(String message)
Deprecated.Creates a new PMD exception with the specified message.PMDException(String message, Exception reason)
Deprecated.Creates a new PMD exception with the specified message and the given reason as root cause.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description int
getSeverity()
Deprecated.void
setSeverity(int severity)
Deprecated.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
PMDException
public PMDException(String message)
Deprecated.Creates a new PMD exception with the specified message.- Parameters:
message
- the message
-
-