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 Dgn7Exception extends Exception
| {
| public Dgn7Exception()
| {
| }
|
| public Dgn7Exception(String s)
| {
| super(s);
| }
|
| public Dgn7Exception(String s, Throwable throwable)
| {
| super(s, throwable);
| }
|
| public Dgn7Exception(Throwable throwable)
| {
| super(throwable);
| }
| }
|
|