| 1 | |
package org.kuali.rice.krad.service; |
| 2 | |
|
| 3 | |
import org.kuali.rice.core.api.exception.KualiException; |
| 4 | |
|
| 5 | |
public class ModuleServiceNotFoundException extends KualiException { |
| 6 | |
public ModuleServiceNotFoundException(String message) { |
| 7 | 0 | super(message); |
| 8 | 0 | } |
| 9 | |
|
| 10 | |
public ModuleServiceNotFoundException(String message, boolean hideIncidentReport) { |
| 11 | 0 | super(message, hideIncidentReport); |
| 12 | 0 | } |
| 13 | |
|
| 14 | |
public ModuleServiceNotFoundException(String message, Throwable t) { |
| 15 | 0 | super(message, t); |
| 16 | 0 | } |
| 17 | |
|
| 18 | |
public ModuleServiceNotFoundException(Throwable t) { |
| 19 | 0 | super(t); |
| 20 | 0 | } |
| 21 | |
} |