Clover Coverage Report - jmxmonitor 1.0.2
Coverage timestamp: Wed Feb 10 2010 07:36:51 GMT
../../../../../img/srcFileCovDistChart0.png 85% of files have more coverage
3   39   4   0.75
0   15   1.33   4
4     1  
1    
 
  InitialisationException       Line # 24 3 0% 4 7 0% 0.0
 
No Tests
 
1    /*
2    * Copyright 2009 Ben Gidley
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.apache.org/licenses/LICENSE-2.0
9    *
10    * Unless required by applicable law or agreed to in writing, software
11    * distributed under the License is distributed on an "AS IS" BASIS,
12    * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13    * See the License for the specific language governing permissions and
14    * limitations under the License.
15    */
16   
17    package uk.co.gidley.jmxmonitor.services;
18   
19    import org.apache.commons.lang.exception.NestableException;
20   
21    /**
22    * Created by IntelliJ IDEA. User: ben Date: Dec 28, 2009 Time: 9:10:01 AM
23    */
 
24    public class InitialisationException extends NestableException {
 
25  0 toggle public InitialisationException() {
26    }
27   
 
28  0 toggle public InitialisationException(String msg) {
29  0 super(msg);
30    }
31   
 
32  0 toggle public InitialisationException(Throwable cause) {
33  0 super(cause);
34    }
35   
 
36  0 toggle public InitialisationException(String msg, Throwable cause) {
37  0 super(msg, cause);
38    }
39    }