Package com.irurueta.commons
Class CommonsException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.irurueta.commons.CommonsException
-
- All Implemented Interfaces:
java.io.Serializable
public class CommonsException extends java.lang.ExceptionBase exception class for this package. All exceptions in this package extend from this one.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CommonsException()Constructor.CommonsException(java.lang.String message)Constructor with String containing message.CommonsException(java.lang.String message, java.lang.Throwable cause)Constructor with message and cause.CommonsException(java.lang.Throwable cause)Constructor with cause.
-
-
-
Constructor Detail
-
CommonsException
public CommonsException()
Constructor.
-
CommonsException
public CommonsException(java.lang.String message)
Constructor with String containing message.- Parameters:
message- Message indicating the cause of the exception.
-
CommonsException
public CommonsException(java.lang.String message, java.lang.Throwable cause)Constructor with message and cause.- Parameters:
message- Message describing the cause of the exception.cause- Instance containing the cause of the exception.
-
CommonsException
public CommonsException(java.lang.Throwable cause)
Constructor with cause.- Parameters:
cause- Instance containing the cause of the exception.
-
-