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 ImmortalException extends Exception {
15 daniel-mar 4
 
5
        private static final long serialVersionUID = -2350754871091479027L;
6
 
32 daniel-mar 7
        public ImmortalException() {
15 daniel-mar 8
                super();
9
        }
10
 
32 daniel-mar 11
        public ImmortalException(Throwable cause) {
15 daniel-mar 12
                super(cause);
13
        }
14
 
32 daniel-mar 15
        public ImmortalException(String message) {
15 daniel-mar 16
                super(message);
17
        }
18
 
32 daniel-mar 19
        public ImmortalException(String message, Throwable cause) {
15 daniel-mar 20
                super(message, cause);
21
        }
22
 
23
}