All Packages  Class Hierarchy  This Package  Previous  Next  Index

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

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

public class SlistIndexOutOfBoundsException
extends IndexOutOfBoundsException
Signals the use of an invalid Slist index.

See Also:
Slist

Constructor Index

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

Constructors

 o SlistIndexOutOfBoundsException
 public SlistIndexOutOfBoundsException()
Constructs an SlistIndexOutOfBoundsException with no detailed message.

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

 o SlistIndexOutOfBoundsException
 public SlistIndexOutOfBoundsException(int low,
                                       int high,
                                       int index)
Constructs an SlistIndexOutOfBoundsException 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