AFLPcore
Class MissingParameterError

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

public class MissingParameterError
extends java.lang.Error

Thrown to indicate that a method does not have all of the required parameters to run. The most likely cause would be an operation that requires certain options to be set.

See Also:
Operation, Serialized Form

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

MissingParameterError

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

MissingParameterError

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