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