View Javadoc

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  	public NoSuchEntityException(String msg) {
13          super(msg);
14      }
15  
16      public NoSuchEntityException(String msg, Throwable cause) {
17          super(msg,cause);
18      }
19  }