Package com.activeviam.fwk
Class ActiveViamException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.activeviam.fwk.ActiveViamException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ActivePivotTransactionException,AgentException,DatastoreTransactionException,EntryNotFoundException,MdxException,PostProcessorEvaluationException,PostProcessorException,PostProcessorInitializationException,QueryException,RetrievalException,SerializerException
public class ActiveViamException extends Exception
ActiveViam Checked Exception.Exception thrown by a ActiveViam component.
- Author:
- ActiveViam
- See Also:
Exception, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ActiveViamException()Default constructor.ActiveViamException(String message)Constructor.ActiveViamException(String messageKey, Object... parameters)Constructor.ActiveViamException(String message, Throwable cause)Constructor.ActiveViamException(Throwable cause)Constructor.ActiveViamException(Throwable exception, String messageKey, Object... parameters)Constructor.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ActiveViamException
public ActiveViamException()
Default constructor.
-
ActiveViamException
public ActiveViamException(String message, Throwable cause)
Constructor.- Parameters:
message- the detailed messagecause- the cause
-
ActiveViamException
public ActiveViamException(String message)
Constructor.- Parameters:
message- the detailed message
-
ActiveViamException
public ActiveViamException(Throwable cause)
Constructor.- Parameters:
cause- the cause
-
ActiveViamException
public ActiveViamException(Throwable exception, String messageKey, Object... parameters)
Constructor.- Parameters:
exception- the causemessageKey- message templateparameters- parameters to inject into the message template
-
-