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 super(message); 8 } 9 10 public ModuleServiceNotFoundException(String message, boolean hideIncidentReport) { 11 super(message, hideIncidentReport); 12 } 13 14 public ModuleServiceNotFoundException(String message, Throwable t) { 15 super(message, t); 16 } 17 18 public ModuleServiceNotFoundException(Throwable t) { 19 super(t); 20 } 21 }