blob: f542db85f2a966d312091d5d0a111103a8dd577a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package exceptions;
/**
* The Interface VSEventNotCopyableException, this exception is thrown if
* the someone tried to copy a not copyable event!
*
* @author Paul C. Buetow
*/
public class VSEventNotCopyableException extends Exception {
/** The serial version uid */
private static final long serialVersionUID = 1L;
public VSEventNotCopyableException(String descr) {
super(descr);
}
}
|