1
2 package org.ocltf.model;
3
4
5 /***
6 * Any unchecked exception that will be thrown
7 * during the exception of a ModelFacade class.
8 */
9 public class ModelFacadeException extends RuntimeException {
10
11 /***
12 * Constructs an instance of ModelFacadeException.
13 *
14 * @param th
15 */
16 public ModelFacadeException(Throwable th){
17 super(th);
18 }
19
20 /***
21 * Constructs an instance of ModelFacadeException.
22 *
23 * @param msg
24 */
25 public ModelFacadeException(String msg) {
26 super(msg);
27 }
28
29 /***
30 * Constructs an instance of ModelFacadeException.
31 *
32 * @param msg
33 * @param th
34 */
35 public ModelFacadeException(String msg, Throwable th) {
36 super(msg, th);
37 }
38
39 }