AFLPcore
Class NoDataError

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Error
              |
              +--AFLPcore.NoDataError
All Implemented Interfaces:
java.io.Serializable

public class NoDataError
extends java.lang.Error

Thrown to indicate that the data required to perform a function was not present.

See Also:
Serialized Form

Constructor Summary
NoDataError()
          Constructs a NoDataError with no detailed message.
NoDataError(java.lang.String s)
          Constructs a NoDataError with the specified detailed message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NoDataError

public NoDataError()
Constructs a NoDataError with no detailed message.

NoDataError

public NoDataError(java.lang.String s)
Constructs a NoDataError with the specified detailed message.
Parameters:
s - the detailed error message.