1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| 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);
| }
| }
|
|