home *** CD-ROM | disk | FTP | other *** search
/ Print Shop Ensemble 3 / the-print-shop-ensemble-iii.iso / worldnet / disk2 / java.z / MOZ2_01.ZIP / java / lang / StringIndexOutOfBoundsException.class (.txt) < prev    next >
Encoding:
Java Class File  |  1996-03-08  |  871 b   |  15 lines

  1. package java.lang;
  2.  
  3. public class StringIndexOutOfBoundsException extends IndexOutOfBoundsException {
  4.    public StringIndexOutOfBoundsException() {
  5.    }
  6.  
  7.    public StringIndexOutOfBoundsException(String s) {
  8.       super(s);
  9.    }
  10.  
  11.    public StringIndexOutOfBoundsException(int index) {
  12.       super("String index out of range: " + index);
  13.    }
  14. }
  15.