You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
468 B
19 lines
468 B
package de.memtext.db; |
|
|
|
/** |
|
* Eine spezielle Exception im Servlet. |
|
* Wird zwar im Applet eigentlich nicht gebraucht, aber trotzdem |
|
* in diesem Package, damit Klassen wie Sicht einheitliche throws-Deklarationen haben. |
|
* |
|
* @author Marlies Winterstein |
|
* @version 2.0, 18.2.2002 |
|
*/ |
|
public class DBServletException extends Exception { |
|
public DBServletException() { |
|
super(); |
|
} |
|
|
|
public DBServletException(String msg) { |
|
super(msg); |
|
} |
|
}
|
|
|