Class AppException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.aquima.interactions.foundation.exception.AppException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AuthenticationFailureException
,CaseEngineClientException
,CaseUpdateException
,CircularServiceCallException
,CommunicationEngineException
,ComposerException
,ConnectivityException
,ContainerException
,ContentException
,ConversionAppException
,CryptoGraphicException
,DocumentException
,ElementComposeException
,EventValidationException
,ExpressionException
,FieldValidationException
,FileException
,FlowException
,FunctionException
,FunctionParameterException
,FunctionValidationException
,IncompletePathException
,InfiniteLoopException
,InfiniteRecursionException
,InitializationException
,InterruptedException
,InvalidCriteriaException
,InvalidInputFormatException
,InvalidLicenseException
,JSONBuilderException
,LookupFailureException
,MappingException
,MatchRequestException
,MetaModelException
,MisconfiguredConnectionException
,NotActivatedException
,ParseException
,PortalException
,ProcessException
,ProfileException
,QRCodeGenerationException
,ResourceException
,RuleEngineException
,SchedulerException
,SemanticException
,ServiceException
,SessionInitializationException
,SoapFaultException
,SpellerException
,StructuredFieldValidationException
,TraceException
,TreeEngineException
,UnknownCaseException
,UnknownConnectionException
,UnknownConnectionException
,UnknownExpanderException
,UnknownFieldTypeException
,UnknownGlobalParameterException
,UnknownLanguageException
,UnknownMatchFunctionException
,UnknownMessageException
,UnknownParameterException
,UnknownPortalMessageFieldException
,UnknownRoleException
,UnknownServiceException
,UnknownValidatorException
,UnknownValueFormatException
,UnknowPortalMessageException
,UnsupportedExpressionParserException
public class AppException extends RuntimeException
Base type for all non fatal exceptions.
Since 8.0 this exception is a Runtime exception.
- Since:
- 5.0
- Author:
- O. Kerpershoek
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AppException(String message)
Basic constructor with only a message explaining the cause of the error.AppException(String message, Throwable cause)
Constructor with both a message and an exception explaining the cause of the error.AppException(Throwable cause)
Basic constructor with only the cause of the error.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
AppException
public AppException(String message)
Basic constructor with only a message explaining the cause of the error.- Parameters:
message
- The message explaining the error that occurred.
-
AppException
public AppException(Throwable cause)
Basic constructor with only the cause of the error.- Parameters:
cause
- The original cause of the error.
-
-