33 lines
632 B
Java
33 lines
632 B
Java
/*
|
|
* TSException.java
|
|
*
|
|
* Created on 2007. januá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);
|
|
}
|
|
} |