All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.roguewave.tools.v2-0.DlistIndexOutOfBoundsException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----java.lang.RuntimeException
                           |
                           +----java.lang.IndexOutOfBoundsException
                                   |
                                   +----com.roguewave.tools.v2-0.DlistIndexOutOfBoundsException

public class DlistIndexOutOfBoundsException
extends IndexOutOfBoundsException
Signals the use of an invalid Dlist index.

See Also:
Dlist

Constructor Index

 o DlistIndexOutOfBoundsException()
Constructs a DlistIndexOutOfBoundsException with no detailed message.
 o DlistIndexOutOfBoundsException(int, int, int)
Constructs an DlistIndexOutOfBoundsException giving the allowable range and the bad index.
 o DlistIndexOutOfBoundsException(String)
Constructs a DlistIndexOutOfBoundsException with a given detailed message.

Constructors

 o DlistIndexOutOfBoundsException
 public DlistIndexOutOfBoundsException()
Constructs a DlistIndexOutOfBoundsException with no detailed message.

 o DlistIndexOutOfBoundsException
 public DlistIndexOutOfBoundsException(String msg)
Constructs a DlistIndexOutOfBoundsException with a given detailed message.

 o DlistIndexOutOfBoundsException
 public DlistIndexOutOfBoundsException(int low,
                                       int high,
                                       int index)
Constructs an DlistIndexOutOfBoundsException giving the allowable range and the bad index.

Parameters:
low - least permissible index
high - greatest permissible index
index - the illegal index

All Packages  Class Hierarchy  This Package  Previous  Next  Index