Coverage Report - org.kuali.rice.core.api.exception.RiceIllegalArgumentException
 
Classes in this File Line Coverage Branch Coverage Complexity
RiceIllegalArgumentException
0%
0/8
N/A
1
 
 1  
 package org.kuali.rice.core.api.exception;
 2  
 
 3  
 import org.kuali.rice.core.api.CoreConstants;
 4  
 
 5  
 import javax.xml.ws.WebFault;
 6  
 
 7  
 /**
 8  
  * Subclass of IllegalArgumentException that has been annotated properly to be (un)marshalled as SOAP fault.
 9  
  * This class should be used in place of IllegalArgumentException for all services to be exposed remotely
 10  
  * within Rice.
 11  
  */
 12  
 @WebFault(name = "IllegalArgumentFault", targetNamespace = CoreConstants.Namespaces.CORE_NAMESPACE_2_0)
 13  
 @SuppressWarnings("unused")
 14  
 public class RiceIllegalArgumentException extends IllegalArgumentException {
 15  0
     public RiceIllegalArgumentException() {
 16  0
     }
 17  
 
 18  
     public RiceIllegalArgumentException(String s) {
 19  0
         super(s);
 20  0
     }
 21  
 
 22  
     public RiceIllegalArgumentException(String s, Throwable throwable) {
 23  0
         super(s, throwable);
 24  0
     }
 25  
 
 26  
     public RiceIllegalArgumentException(Throwable throwable) {
 27  0
         super(throwable);
 28  0
     }
 29  
 }