home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Professionell 2004 December
/
PCpro_2004_12.ISO
/
files
/
webserver
/
xampp
/
xampp-cocoon-addon-1.4.9-installer.exe
/
ApplicationException.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
|
2004-07-12
|
605 b
|
18 lines
package org.apache.cocoon.samples.errorhandling;
public class ApplicationException extends Exception {
private int errorCode;
public ApplicationException(int errorCode) {
this.errorCode = errorCode;
}
public void setErrorCode(int errorCode) {
this.errorCode = errorCode;
}
public int getErrorCode() {
return this.errorCode;
}
}