Package com.ibm.dbb.build.report
Class TransformerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.ibm.dbb.build.report.TransformerException
-
- All Implemented Interfaces:
java.io.Serializable
public class TransformerException extends java.lang.Exception
Thrown when an exception occurs when transform build report from JSON format to HTML.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TransformerException()
Construct aTransformerException
with no message.TransformerException(java.lang.String message)
Construct aTransformerException
with a detail message.TransformerException(java.lang.String message, java.lang.Throwable cause)
Construct aTransformerException
with a detail message and the actual cause of the exception.TransformerException(java.lang.Throwable cause)
Construct aTransformerException
with the actual cause of the exception.
-
-
-
Constructor Detail
-
TransformerException
public TransformerException()
Construct aTransformerException
with no message.
-
TransformerException
public TransformerException(java.lang.String message)
Construct aTransformerException
with a detail message.- Parameters:
message
- the detail message.
-
TransformerException
public TransformerException(java.lang.Throwable cause)
Construct aTransformerException
with the actual cause of the exception.- Parameters:
cause
- the actual cause of the exception.
-
TransformerException
public TransformerException(java.lang.String message, java.lang.Throwable cause)
Construct aTransformerException
with a detail message and the actual cause of the exception.- Parameters:
message
- the detail message.cause
- the actual cause of the exception.
-
-