git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@50874 248e525c-4dfb-0310-94bc-949c084e9493
This commit is contained in:
33
Data/BulkLoad/EFT/Nominations/java/TSException.java
Normal file
33
Data/BulkLoad/EFT/Nominations/java/TSException.java
Normal file
@@ -0,0 +1,33 @@
|
||||
/*
|
||||
* TSException.java
|
||||
*
|
||||
* Created on 2007. janu<6E>r 21., 17:46
|
||||
*
|
||||
* To change this template, choose Tools | Template Manager
|
||||
* and open the template in the editor.
|
||||
*/
|
||||
|
||||
package tsdemo;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author root
|
||||
*/
|
||||
public class TSException extends Exception {
|
||||
|
||||
/** Creates a new instance of TSException */
|
||||
public TSException() {
|
||||
}
|
||||
|
||||
public TSException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
public TSException(String message, Throwable cause) {
|
||||
super(message, cause);
|
||||
}
|
||||
|
||||
public TSException(Throwable cause) {
|
||||
super(cause);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user