Subversion Repositories distributed

Rev

Rev 30 | Go to most recent revision | Details | Last modification | View Log | RSS feed

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