AFLPcore
Class ScanCalcError

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

public class ScanCalcError
extends java.lang.Error

Thrown to indicate that a method cannot determine the scan number from a given size. For example, the sizing function f(n) may not have an inverse function, which means that a method must "guess" at which value is correct.

See Also:
Serialized Form

Constructor Summary
ScanCalcError()
          Constructs a ScanCalcError with no detailed message.
ScanCalcError(java.lang.String s)
          Constructs a ScanCalcError 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

ScanCalcError

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

ScanCalcError

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