1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.exception;
17
18 import org.kuali.rice.core.api.exception.KualiException;
19
20 public class ModuleServiceNotFoundException extends KualiException {
21 public ModuleServiceNotFoundException(String message) {
22 super(message);
23 }
24
25 public ModuleServiceNotFoundException(String message, boolean hideIncidentReport) {
26 super(message, hideIncidentReport);
27 }
28
29 public ModuleServiceNotFoundException(String message, Throwable t) {
30 super(message, t);
31 }
32
33 public ModuleServiceNotFoundException(Throwable t) {
34 super(t);
35 }
36 }