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.
23 lines
463 B
23 lines
463 B
package de.memtext.db; |
|
|
|
public class NichtAngemeldetException extends Exception { |
|
|
|
public NichtAngemeldetException() { |
|
super(); |
|
} |
|
|
|
public NichtAngemeldetException(String message) { |
|
super(message); |
|
} |
|
|
|
public NichtAngemeldetException(String message, Throwable cause) { |
|
super(message, cause); |
|
} |
|
|
|
public NichtAngemeldetException(Throwable cause) { |
|
super(cause); |
|
} |
|
|
|
} |
|
|
|
//Created on 05.10.2004 at 13:12:23
|