home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &… the Search for Life CD 3 / 0_CD-ROM.iso / install / jre1_3 / lib / rt.jar / javax / swing / text / BadLocationException.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  288 b   |  15 lines

  1. package javax.swing.text;
  2.  
  3. public class BadLocationException extends Exception {
  4.    private int offs;
  5.  
  6.    public BadLocationException(String var1, int var2) {
  7.       super(var1);
  8.       this.offs = var2;
  9.    }
  10.  
  11.    public int offsetRequested() {
  12.       return this.offs;
  13.    }
  14. }
  15.