| java.lang.Object java.lang.Throwable java.lang.Exception org.jaffa.exceptions.CustomException org.jaffa.exceptions.FrameworkException
All known Subclasses: org.jaffa.beans.moulding.mapping.MouldException, org.jaffa.persistence.exceptions.UOWException, org.jaffa.components.voucher.VoucherGeneratorException, org.jaffa.exceptions.MiddlewareException, org.jaffa.rules.RulesEngineException, org.jaffa.persistence.exceptions.DomainObjectValidationException,
FrameworkException | abstract public class FrameworkException extends CustomException (Code) | | This is the base exception class for all framework exceptions.
Any specific framework exception should extend this and wrapper a unique error code.
|
FrameworkException | protected FrameworkException(String errorCode)(Code) | | Creates an exception with the errorCode.
Parameters: errorCode - the errorCode |
FrameworkException | protected FrameworkException(String errorCode, Object[] arguments)(Code) | | Creates an exception with the errorCode and a cause.
Parameters: errorCode - the errorCode. Parameters: arguments - the arguments, if any, that need to be merged into the error message from the resource bundle. |
FrameworkException | protected FrameworkException(String errorCode, Object[] arguments, Throwable cause)(Code) | | Creates an exception with the errorCode and a cause.
Parameters: errorCode - the errorCode. Parameters: arguments - the arguments, if any, that need to be merged into the error message from the resource bundle. Parameters: cause - the cause. |
|
|