2010-09-23 17:30:34 +02:00
|
|
|
package de.hsadmin.web;
|
|
|
|
|
|
|
|
|
|
|
|
public class HsarwebException extends Exception {
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
2010-12-15 14:15:52 +01:00
|
|
|
public HsarwebException(String string, Throwable e) {
|
|
|
|
super(string, e);
|
2010-09-23 17:30:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|