Clover Coverage Report - itracker
Coverage timestamp: Tue May 1 2012 16:42:12 CEST
2   19   2   1
0   11   1   2
2     1  
1    
 
 
  NoSuchEntityException       Line # 5 2 2 0% 0.0
 
No Tests
 
1    package org.itracker.persistence.dao;
2   
3    import org.springframework.dao.DataAccessException;
4   
 
5    public class NoSuchEntityException extends DataAccessException {
6   
7    /**
8    *
9    */
10    private static final long serialVersionUID = 1L;
11   
 
12  0 toggle public NoSuchEntityException(String msg) {
13  0 super(msg);
14    }
15   
 
16  0 toggle public NoSuchEntityException(String msg, Throwable cause) {
17  0 super(msg,cause);
18    }
19    }