1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| package com.ximple.io.dgn7;
|
| /**
| * Created by IntelliJ IDEA.
| * User: Ulysses
| * Date: 2007/9/13
| * Time: 上午 11:19:08
| * To change this template use File | Settings | File Templates.
| */
| public class Dgn7fileException extends Exception
| {
|
| public Dgn7fileException()
| {
| }
|
| public Dgn7fileException(String message)
| {
| super(message);
| }
|
| public Dgn7fileException(String message, Throwable cause)
| {
| super(message, cause);
| }
|
| public Dgn7fileException(Throwable cause)
| {
| super(cause);
| }
| }
|
|