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

public class PresentationException extends Exception implements Serializable
Thrown when an error occurs while loading or presenting a digitized record.
See Also:
  • Constructor Details

    • PresentationException

      public PresentationException(String string)
      Creates a new PresentationException instance.
      Parameters:
      string - String
    • PresentationException

      public PresentationException(String string, Throwable e)
      Creates a new PresentationException instance.
      Parameters:
      string - human-readable error description
      e - underlying exception that triggered this error
    • PresentationException

      public PresentationException(Throwable e, String string, Object... args)
      Creates a new PresentationException instance.
      Parameters:
      e - underlying exception that triggered this error
      string - message template with '{}' placeholders
      args - strings to replace placeholders ('{}') in the string
    • PresentationException

      public PresentationException(String string, Object... args)