home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Plus SuperCD (UK) 2000 March
/
pcp161a.iso
/
handson
/
files
/
copyjava.exe
/
com
/
sun
/
java
/
swing
/
text
/
BadLocationException.class
(
.txt
)
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Class File
|
1998-02-26
|
440 b
|
15 lines
package com.sun.java.swing.text;
public class BadLocationException extends Exception {
private int offs;
public BadLocationException(String var1, int var2) {
super(var1);
this.offs = var2;
}
public int offsetRequested() {
return this.offs;
}
}