public class ClustererException
extends java.lang.Exception
Constructor and Description |
---|
ClustererException()
Constructs a
ClustererException with no detail
message. |
ClustererException(java.lang.String message)
Constructs a
ClustererException with the specified detailed
message. |
ClustererException(java.lang.String message,
java.lang.Throwable cause)
Constructs a
ClustererException with the specified detailed
message and a cause. |
ClustererException(java.lang.Throwable cause)
Constructs a
ClustererException with the
specified just a cause. |
public ClustererException()
ClustererException
with no detail
message.public ClustererException(java.lang.String message)
ClustererException
with the specified detailed
message.message
- is the detailled message.public ClustererException(java.lang.String message, java.lang.Throwable cause)
ClustererException
with the specified detailed
message and a cause.message
- is the detailled message.cause
- is the cause (which is saved for later retrieval by the
Throwable.getCause()
method). A null
value is permitted, and indicates that the cause is nonexistent or
unknown.public ClustererException(java.lang.Throwable cause)
ClustererException
with the
specified just a cause.cause
- is the cause (which is saved for later retrieval by the
Throwable.getCause()
method). A null
value is permitted, and indicates that the cause is nonexistent or
unknown.