Subversion Repositories distributed

Rev

Rev 30 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
30 daniel-mar 1
package de.viathinksoft.immortal.genX;
15 daniel-mar 2
 
32 daniel-mar 3
public class LoadException extends ImmortalException {
15 daniel-mar 4
 
5
        private static final long serialVersionUID = 5556229109549989469L;
6
 
7
        public LoadException() {
8
                super();
9
        }
10
 
11
        public LoadException(Throwable cause) {
12
                super(cause);
13
        }
14
 
15
        public LoadException(String message) {
16
                super(message);
17
        }
18
 
19
        public LoadException(String message, Throwable cause) {
20
                super(message, cause);
21
        }
22
 
23
}