1 package org.sourceforge.jemm;
2
3 /**
4 * This exception is used when the JEMM subsystem suffers from an internal
5 * error.
6 *
7 * @author Rory Graves
8 *
9 */
10 public class JEMMInternalException extends BaseException {
11 private static final long serialVersionUID = 1L;
12
13 /**
14 * JEMMInternalException constructor with a message and an underlying cause
15 * exception chain.
16 *
17 * @param message
18 * The error message
19 * @param cause
20 * The underlying cause exception.
21 */
22 public JEMMInternalException(String message, Throwable cause) {
23 super(message, cause);
24 }
25
26 /**
27 * JEMMInternalException constructor with a message.
28 *
29 * @param message
30 * The error message.
31 */
32 public JEMMInternalException(String message) {
33 super(message);
34 }
35 }