1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package net.sf.morph.lang;
17
18 import net.sf.morph.MorphException;
19
20 /**
21 * Thrown to indicate that an error occurred while accessing or modifying
22 * information using a given Language.
23 *
24 * @author Matt Sgarlata
25 * @since Nov 28, 2004
26 */
27 public class LanguageException extends MorphException {
28
29 public LanguageException() {
30 super();
31 }
32 public LanguageException(String message) {
33 super(message);
34 }
35 public LanguageException(String message, Throwable cause) {
36 super(message, cause);
37 }
38 public LanguageException(Throwable cause) {
39 super(cause);
40 }
41 }