git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@50874 248e525c-4dfb-0310-94bc-949c084e9493

This commit is contained in:
andrew.gilmore
2012-03-19 11:57:19 +00:00
parent 2a0f4900c3
commit 0e9ca75d77
1587 changed files with 500863 additions and 0 deletions

View 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);
}
}