Class UnknownDocumentException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.aquima.interactions.foundation.exception.AppException
-
- com.aquima.interactions.composer.ComposerException
-
- com.aquima.interactions.composer.exception.UnknownDocumentException
-
- All Implemented Interfaces:
Serializable
public class UnknownDocumentException extends ComposerException
This exception is used to indicate that no definition could be found for a specified document name.- Since:
- 6.0
- Author:
- O. Kerpershoek
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnknownDocumentException(String documentName)
Constructs the exception with the name of the document for which no definition could be found.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDocumentName()
This method returns the name of the document for which no definition could be found.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
UnknownDocumentException
public UnknownDocumentException(String documentName)
Constructs the exception with the name of the document for which no definition could be found.- Parameters:
documentName
- the name of the document for which no definition could be found.
-
-
Method Detail
-
getDocumentName
public String getDocumentName()
This method returns the name of the document for which no definition could be found.- Returns:
- the name of the document for which no definition could be found.
-
-