Clover Coverage Report - Kuali Student 1.1 (Aggregated)
Coverage timestamp: Sun Mar 6 2011 20:32:39 EST
../../../../../img/srcFileCovDistChart0.png 53% of files have more coverage
4   61   4   1
0   18   1   4
4     1  
1    
 
  KSSecurityException       Line # 21 4 0% 4 8 0% 0.0
 
No Tests
 
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  0 toggle public KSSecurityException() {
30  0 super();
31    }
32   
33    /**
34    * This constructs a ...
35    *
36    * @param message
37    * @param cause
38    */
 
39  0 toggle public KSSecurityException(String message, Throwable cause) {
40  0 super(message, cause);
41    }
42   
43    /**
44    * This constructs a ...
45    *
46    * @param message
47    */
 
48  0 toggle public KSSecurityException(String message) {
49  0 super(message);
50    }
51   
52    /**
53    * This constructs a ...
54    *
55    * @param cause
56    */
 
57  0 toggle public KSSecurityException(Throwable cause) {
58  0 super(cause);
59    }
60   
61    }