Dennis Kao
2013-12-04 98fc790f9ec053d5367d7ce5851ef66d5a7ced5b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ximple.io.dgn7;
 
public class Dgn7fileException extends Dgn7Exception {
 
    public Dgn7fileException() {
    }
 
    public Dgn7fileException(String message) {
        super(message);
    }
 
    public Dgn7fileException(String message, Throwable cause) {
        super(message, cause);
    }
 
    public Dgn7fileException(Throwable cause) {
        super(cause);
    }
}