Class NoDataException

  • All Implemented Interfaces:
    java.io.Serializable

    @ThreadSafe
    public class NoDataException
    extends java.io.IOException
    An exception used when the data needed does not exist to perform analysis.
    Author:
    Jeremy Long
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      NoDataException()
      Creates a new NoDataException.
      NoDataException​(java.lang.String msg)
      Creates a new NoDataException.
      NoDataException​(java.lang.String msg, java.lang.Throwable ex)
      Creates a new NoDataException.
      NoDataException​(java.lang.Throwable ex)
      Creates a new NoDataException.
    • 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

      • NoDataException

        public NoDataException()
        Creates a new NoDataException.
      • NoDataException

        public NoDataException​(java.lang.String msg)
        Creates a new NoDataException.
        Parameters:
        msg - a message for the exception.
      • NoDataException

        public NoDataException​(java.lang.Throwable ex)
        Creates a new NoDataException.
        Parameters:
        ex - the cause of the exception.
      • NoDataException

        public NoDataException​(java.lang.String msg,
                               java.lang.Throwable ex)
        Creates a new NoDataException.
        Parameters:
        msg - a message for the exception.
        ex - the cause of the exception.