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, DecisionTreeUnauthenticatedException, DecisionTreeUnauthorizedException, DocumentException, ElementComposeException, EventValidationException, ExpressionException, FieldValidationException, FileException, FlowException, FunctionException, FunctionParameterException, FunctionValidationException, IncompletePathException, InfiniteLoopException, InfiniteRecursionException, InitializationException, InterruptedException, InvalidCriteriaException, InvalidDirectionException, 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:
  • Constructor Details

    • 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.
    • AppException

      public AppException(String message, Throwable cause)
      Constructor with both a message and an exception explaining the cause of the error.
      Parameters:
      message - The message explaining the error that occurred.
      cause - The original cause of the error.