1
2
3
4 package com.flexiblewebsolutions.exceptions;
5
6 /***
7 * Exception to denote that an expected configuration file is missing
8 *
9 * @author Donavon Buss
10 */
11 public class MissingConfigException extends Exception {
12
13 /***
14 * Create the MissingConfigException
15 */
16 public MissingConfigException() {
17 super();
18 }
19
20 /***
21 * @param message
22 */
23 public MissingConfigException(String message) {
24 super(message);
25 }
26
27 /***
28 * @param message
29 * @param cause
30 */
31 public MissingConfigException(String message, Throwable cause) {
32 super(message, cause);
33 }
34
35 /***
36 * @param cause
37 */
38 public MissingConfigException(Throwable cause) {
39 super(cause);
40 }
41
42 }