Coverage Report - org.kuali.rice.kns.service.BusinessObjectNotLookupableException
 
Classes in this File Line Coverage Branch Coverage Complexity
BusinessObjectNotLookupableException
0%
0/8
N/A
1
 
 1  
 package org.kuali.rice.kns.service;
 2  
 
 3  
 import org.kuali.rice.core.api.exception.KualiException;
 4  
 
 5  
 /**
 6  
  * Thrown when a BusinessObject is expected to implement Lookupable, but does not.
 7  
  *
 8  
  * @see org.kuali.rice.kns.lookup.Lookupable
 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  
 }