Coverage Report - org.kuali.student.security.exceptions.KSSecurityException
 
Classes in this File Line Coverage Branch Coverage Complexity
KSSecurityException
0%
0/8
N/A
1
 
 1  
 /**
 2  
  * Copyright 2010 The Kuali Foundation Licensed under the
 3  
  * Educational Community License, Version 2.0 (the "License"); you may
 4  
  * not use this file except in compliance with the License. You may
 5  
  * obtain a copy of the License at
 6  
  *
 7  
  * http://www.osedu.org/licenses/ECL-2.0
 8  
  *
 9  
  * Unless required by applicable law or agreed to in writing,
 10  
  * software distributed under the License is distributed on an "AS IS"
 11  
  * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 12  
  * or implied. See the License for the specific language governing
 13  
  * permissions and limitations under the License.
 14  
  */
 15  
 
 16  
 package org.kuali.student.security.exceptions;
 17  
 
 18  
 import javax.xml.ws.WebFault;
 19  
 
 20  
 @WebFault(faultBean="org.kuali.student.security.exceptions.KSSecurityExceptionFaultBean", targetNamespace="http://student.kuali.org/wsdl/exceptions")
 21  
 public class KSSecurityException extends Exception {
 22  
 
 23  
     private static final long serialVersionUID = 2941300199692497512L;
 24  
 
 25  
     /**
 26  
      * This constructs a ...
 27  
      * 
 28  
      */
 29  
     public KSSecurityException() {
 30  0
         super();
 31  0
     }
 32  
 
 33  
     /**
 34  
      * This constructs a ...
 35  
      * 
 36  
      * @param message
 37  
      * @param cause
 38  
      */
 39  
     public KSSecurityException(String message, Throwable cause) {
 40  0
         super(message, cause);
 41  0
     }
 42  
 
 43  
     /**
 44  
      * This constructs a ...
 45  
      * 
 46  
      * @param message
 47  
      */
 48  
     public KSSecurityException(String message) {
 49  0
         super(message);
 50  0
     }
 51  
 
 52  
     /**
 53  
      * This constructs a ...
 54  
      * 
 55  
      * @param cause
 56  
      */
 57  
     public KSSecurityException(Throwable cause) {
 58  0
         super(cause);
 59  0
     }
 60  
 
 61  
 }