blob: e53397a54832201dfbd84557982b1b7a5c4a94d5 (
plain)
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
32
33
34
35
36
37
38
|
/*
* Copyright (c) 2003, Mishkin Berteig and Christian Gruber
*
* $Id: DimensionExistsException.java 249 2003-02-02 03:33:46Z cgruber $
*/
package net.israfil.foundation.collections.nspace;
/**
* Thrown if a dimension is added to an NSpace which already defines a
* Dimension with that name.
*
* @author <a href="mailto:mishkin@berteig.com">Mishkin Berteig</a>
* @author <a href="mailto:cgruber@israfil.net">Christian Gruber</a>
* @version $Revision: 249 $
*/
public class DimensionExistsException extends Exception {
/**
*
*/
private static final long serialVersionUID = -801633377290441235L;
/**
* Constructor for DimensionExistsException.
*/
public DimensionExistsException() {
super();
}
/**
* Constructor for DimensionExistsException.
* @param arg0
*/
public DimensionExistsException(String arg0) {
super(arg0);
}
}
|