| org.jaffa.exceptions.MiddlewareException org.jaffa.middleware.CreateServiceException
CreateServiceException | public class CreateServiceException extends MiddlewareException (Code) | | This exception is thrown if any error occurs during the creation of the Transaction Controller.
|
INSTANTIATION_FAILED | final public static String INSTANTIATION_FAILED(Code) | | One of the reasons for throwing this exception
|
INVALID_INPUT | final public static String INVALID_INPUT(Code) | | One of the reasons for throwing this exception
|
NOT_AN_INTERFACE | final public static String NOT_AN_INTERFACE(Code) | | One of the reasons for throwing this exception
|
CreateServiceException | public CreateServiceException(String subCode)(Code) | | Creates an exception with the errorCode.
Parameters: subCode - The reason for the exception. This should be on of the statics defined in this class. |
CreateServiceException | public CreateServiceException(String subCode, Object[] arguments)(Code) | | Creates an exception with the errorCode and a cause.
Parameters: subCode - The reason for the exception. This should be on of the statics defined in this class. Parameters: arguments - the arguments, if any, that need to be merged into the error message from the resource bundle. |
CreateServiceException | public CreateServiceException(String subCode, Object[] arguments, Throwable cause)(Code) | | Creates an exception with the errorCode and a cause.
Parameters: subCode - The reason for the exception. This should be on of the statics defined in this class. Parameters: arguments - the arguments, if any, that need to be merged into the error message from the resource bundle. Parameters: cause - the cause. |
|
|