Package io.goobi.viewer.exceptions
Class PresentationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
io.goobi.viewer.exceptions.PresentationException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AjaxResponseException,ArchiveException,ArchiveSizeExceededException,CmsEditException,CmsElementNotFoundException,ContentTypeException,DownloadException,UploadException
Thrown when an error occurs while loading or presenting a digitized record.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionPresentationException(String string) Creates a new PresentationException instance.PresentationException(String string, Object... args) PresentationException(String string, Throwable e) Creates a new PresentationException instance.PresentationException(Throwable e, String string, Object... args) Creates a new PresentationException instance. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PresentationException
Creates a new PresentationException instance.- Parameters:
string-String
-
PresentationException
Creates a new PresentationException instance.- Parameters:
string- human-readable error descriptione- underlying exception that triggered this error
-
PresentationException
Creates a new PresentationException instance.- Parameters:
e- underlying exception that triggered this errorstring- message template with '{}' placeholdersargs- strings to replace placeholders ('{}') in the string
-
PresentationException
-