Package com.ibm.dbb.build
Class ValidationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.ibm.dbb.build.ValidationException
-
- All Implemented Interfaces:
java.io.Serializable
public class ValidationException extends java.lang.RuntimeException
Thrown to indicate that the arguments are invalid for a specific command.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ValidationException()
Construct aValidationException
with no default message.ValidationException(java.lang.String message)
Construct aValidationException
with a default message.ValidationException(java.lang.String message, java.lang.Throwable cause)
Construct aValidationException
with a detail message and the cause.ValidationException(java.lang.Throwable cause)
Construct aValidationException
with the actual cause of the exception.
-
-
-
Constructor Detail
-
ValidationException
public ValidationException()
Construct aValidationException
with no default message.
-
ValidationException
public ValidationException(java.lang.String message)
Construct aValidationException
with a default message.- Parameters:
message
- the detail message.
-
ValidationException
public ValidationException(java.lang.Throwable cause)
Construct aValidationException
with the actual cause of the exception.- Parameters:
cause
- the actual cause of the exception. This could beNULL
in which case the actual cause of the exception is unknown.
-
ValidationException
public ValidationException(java.lang.String message, java.lang.Throwable cause)
Construct aValidationException
with a detail message and the cause.- Parameters:
message
- the detail message.cause
- the cause of the exception.
-
-