Class UnknownProcessEventException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.aquima.interactions.foundation.exception.AppException
-
- com.aquima.interactions.process.exception.ProcessException
-
- com.aquima.interactions.process.exception.UnknownProcessEventException
-
- All Implemented Interfaces:
Serializable
public class UnknownProcessEventException extends ProcessException
This type of exception is used when an invalid process event name is encountered.- Since:
- 7.1
- Author:
- O. Kerpershoek
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnknownProcessEventException(String processEventName)
Constructs the exception with the invalid process event name.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getProcessEventName()
This method returns the name of the process event that was invalid.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
UnknownProcessEventException
public UnknownProcessEventException(String processEventName)
Constructs the exception with the invalid process event name.- Parameters:
processEventName
- The name of the process event that is invalid
-
-
Method Detail
-
getProcessEventName
public String getProcessEventName()
This method returns the name of the process event that was invalid.- Returns:
- the name of the process event that was invalid.
-
-