Clover Coverage Report - Main Coverage Report
Coverage timestamp: ven dic 19 2014 16:47:52 EST
../../../../img/srcFileCovDistChart0.png 84% of files have more coverage
4   22   4   1
0   16   1   4
4     1  
1    
This report was generated with an evaluation server license. Purchase Clover or configure your license.
 
  NetworkException       Line # 3 4 4 0% 0.0
 
No Tests
 
1    package com.dreamcatcher.bicycle.exception;
2   
 
3    public class NetworkException extends Exception {
4    private static final long serialVersionUID = 1639042918413298333L;
5   
 
6  0 toggle public NetworkException() {
7  0 super();
8    }
9   
 
10  0 toggle public NetworkException(String detailMessage, Throwable throwable) {
11  0 super(detailMessage, throwable);
12    }
13   
 
14  0 toggle public NetworkException(String detailMessage) {
15  0 super(detailMessage);
16    }
17   
 
18  0 toggle public NetworkException(Throwable throwable) {
19  0 super(throwable);
20    }
21   
22    }