Package com.ibm.dbb.build
Class BuildException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.ibm.dbb.build.BuildException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ClassSourceException
public class BuildException extends java.lang.Exception
Throw when a failure encounters during a build- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BuildException()
Construct a new exception without a detail message.BuildException(java.lang.String message)
Constructs a new exception with the specified detail messageBuildException(java.lang.String message, java.lang.Throwable cause)
Constructs a new exception with the specified detail message and cause.BuildException(java.lang.Throwable cause)
Constructs a new exception with the specified cause.
-
-
-
Constructor Detail
-
BuildException
public BuildException()
Construct a new exception without a detail message.
-
BuildException
public BuildException(java.lang.String message)
Constructs a new exception with the specified detail messageNote that the detail message associated with
cause
is not automatically incorporated in this exception's detail message.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).
-
BuildException
public BuildException(java.lang.Throwable cause)
Constructs a new exception with the specified cause.- Parameters:
cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
BuildException
public BuildException(java.lang.String message, java.lang.Throwable cause)
Constructs a new exception with the specified detail message and cause.Note that the detail message associated with
cause
is not automatically incorporated in this exception's detail message.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
-