org.apache.commons.lang
Class IncompleteArgumentException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by java.lang.IllegalArgumentException
                  extended by org.apache.commons.lang.IncompleteArgumentException
All Implemented Interfaces:
java.io.Serializable

public class IncompleteArgumentException
extends java.lang.IllegalArgumentException

Thrown to indicate an incomplete argument to a method.

Since:
2.0
Version:
$Id: IncompleteArgumentException.java,v 1.4 2003/08/18 02:22:23 bayard Exp $
Author:
Matthew Hawthorne
See Also:
Serialized Form

Constructor Summary
IncompleteArgumentException(java.lang.String argName)
          Instantiates with the specified description.
IncompleteArgumentException(java.lang.String argName, java.lang.String[] items)
          Instantiates with the specified description.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, 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

IncompleteArgumentException

public IncompleteArgumentException(java.lang.String argName)

Instantiates with the specified description.

Parameters:
argName - a description of the incomplete argument

IncompleteArgumentException

public IncompleteArgumentException(java.lang.String argName,
                                   java.lang.String[] items)

Instantiates with the specified description.

Parameters:
argName - a description of the incomplete argument
items - an array describing the arguments missing


Copyright © 2001-2003 - Apache Software Foundation