Clover Coverage Report - Kuali Student 1.2-M3-SNAPSHOT (Aggregated)
Coverage timestamp: Mon Jun 6 2011 05:02:46 EDT
../../../../../../../img/srcFileCovDistChart7.png 42% of files have more coverage
3   50   3   1
0   13   1   3
3     1  
1    
 
  MessageBuilderException       Line # 18 3 0% 3 2 66.7% 0.6666667
 
  (7)
 
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.common.messagebuilder.impl.exceptions;
17   
 
18    public class MessageBuilderException extends RuntimeException {
19   
20    /** Class serial version uid */
21    private static final long serialVersionUID = 1L;
22   
23    /**
24    * Constructs a new message builder exception.
25    *
26    * @param cause Cause of this exception
27    */
 
28  0 toggle public MessageBuilderException(Throwable cause) {
29  0 super(cause);
30    }
31   
32    /**
33    * Constructs a new message builder exception.
34    *
35    * @param msg Error message description
36    * @param cause Cause of this exception
37    */
 
38  2 toggle public MessageBuilderException(String msg, Throwable cause) {
39  2 super(msg, cause);
40    }
41   
42    /**
43    * Constructs a new message builder exception.
44    *
45    * @param msg Error message description
46    */
 
47  5 toggle public MessageBuilderException(String msg) {
48  5 super(msg);
49    }
50    }