yuanhung
2016-03-04 848e4c119f9ffea9d436eb3a8a7551debddb689f
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);
    }
}