Class DataSourceException

  • All Implemented Interfaces:
    java.io.Serializable

    public class DataSourceException
    extends java.lang.Exception
    Reports an error occurred while trying to pull out data from the pixels data repository.
    Since:
    OME2.2
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      DataSourceException()
      Creates a new exception.
      DataSourceException​(java.lang.String message)
      Constructs a new exception with the specified detail message.
      DataSourceException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a new exception with the specified detail message and cause.
      DataSourceException​(java.lang.Throwable cause)
      Constructs a new exception with the specified cause.
    • 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 Detail

      • DataSourceException

        public DataSourceException()
        Creates a new exception.
      • DataSourceException

        public DataSourceException​(java.lang.String message)
        Constructs a new exception with the specified detail message.
        Parameters:
        message - Short explanation of the problem.
      • DataSourceException

        public DataSourceException​(java.lang.Throwable cause)
        Constructs a new exception with the specified cause.
        Parameters:
        cause - The exception that caused this one to be risen.
      • DataSourceException

        public DataSourceException​(java.lang.String message,
                                   java.lang.Throwable cause)
        Constructs a new exception with the specified detail message and cause.
        Parameters:
        message - Short explanation of the problem.
        cause - The exception that caused this one to be risen.