Restructure ui.combo package
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / translation / LanguageNotSupportedException.java
1 /**
2 * Copyright (C) 2007 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9
10 package eu.etaxonomy.taxeditor.ui.translation;
11
12
13 /**
14 * <p>LanguageNotSupportedException class.</p>
15 *
16 * @author n.hoffmann
17 * @created Oct 21, 2010
18 * @version 1.0
19 */
20 public class LanguageNotSupportedException extends Exception {
21
22 /**
23 *
24 */
25 private static final long serialVersionUID = -5522230902149840805L;
26
27 /**
28 * <p>Constructor for LanguageNotSupportedException.</p>
29 */
30 public LanguageNotSupportedException(){
31 super();
32 }
33
34 /**
35 * <p>Constructor for LanguageNotSupportedException.</p>
36 *
37 * @param string a {@link java.lang.String} object.
38 */
39 public LanguageNotSupportedException(String string) {
40 super(string);
41 }
42
43
44 public LanguageNotSupportedException(Exception e) {
45 super(e);
46 }
47 }