Class ServiceException

java.lang.Object
java.lang.Throwable
java.lang.Exception
loci.common.services.ServiceException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
S3ClientServiceException

public class ServiceException
extends java.lang.Exception
Exception thrown when there is an error within a given service. That could not be handled.
Author:
Chris Allan (callan at blackcat dot ca)
See Also:
Serialized Form
  • Constructor Summary

    Constructors 
    Constructor Description
    ServiceException​(java.lang.String message)
    Default constructor.
    ServiceException​(java.lang.String message, java.lang.Throwable cause)
    Default constructor.
    ServiceException​(java.lang.Throwable cause)
    Default constructor.
  • Method Summary

    Methods inherited from class java.lang.Throwable

    addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • ServiceException

      public ServiceException​(java.lang.String message)
      Default constructor.
      Parameters:
      message - Error message.
    • ServiceException

      public ServiceException​(java.lang.String message, java.lang.Throwable cause)
      Default constructor.
      Parameters:
      message - Error message.
      cause - Upstream exception.
    • ServiceException

      public ServiceException​(java.lang.Throwable cause)
      Default constructor.
      Parameters:
      cause - Upstream exception.