Subversion Repositories distributed

Rev

Rev 30 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

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