org.apache.commons.lang
Class IncompleteArgumentException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended byjava.lang.IllegalArgumentException
                  extended byorg.apache.commons.lang.IncompleteArgumentException
All Implemented Interfaces:
Serializable

public class IncompleteArgumentException
extends 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(String argName)
          Instantiates with the specified description.
IncompleteArgumentException(String argName, String[] items)
          Instantiates with the specified description.
 
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(String argName)

Instantiates with the specified description.

Parameters:
argName - a description of the incomplete argument

IncompleteArgumentException

public IncompleteArgumentException(String argName,
                                   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