Normal
Natürlich musst du noch einen Konstruktor einfügen und dann den string der super-Klasse übergeben:[code=Java]public class IlleagalProblemException extends Exception { private static final long serialVersionUID = 1L; public IlleagalProblemException(String msg) { super(msg); }}[/code]
Natürlich musst du noch einen Konstruktor einfügen und dann den string der super-Klasse übergeben:
[code=Java]
public class IlleagalProblemException extends Exception {
private static final long serialVersionUID = 1L;
public IlleagalProblemException(String msg) {
super(msg);
}
[/code]