Package com.ibm.dbb.build.report
Class ParseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.ibm.dbb.build.report.ParseException
-
- All Implemented Interfaces:
java.io.Serializable
public class ParseException extends java.lang.RuntimeException
Thrown when an exception occurs when parsing the build report.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ParseException()
Constructs aParseException
with no message.ParseException(java.lang.String message)
Constructs aParseException
with a detail messageParseException(java.lang.String message, java.lang.Throwable cause)
Constructs aParseException
with a detail message and the cause of the exception.ParseException(java.lang.Throwable cause)
Constructs aParseException
with the cause of the exception.
-
-
-
Constructor Detail
-
ParseException
public ParseException()
Constructs aParseException
with no message.
-
ParseException
public ParseException(java.lang.String message)
Constructs aParseException
with a detail message- Parameters:
message
- the detail message.
-
ParseException
public ParseException(java.lang.Throwable cause)
Constructs aParseException
with the cause of the exception.- Parameters:
cause
- the actual cause of the exception.
-
ParseException
public ParseException(java.lang.String message, java.lang.Throwable cause)
Constructs aParseException
with a detail message and the cause of the exception.- Parameters:
message
- the detail message.cause
- the actual cause of the exception.
-
-