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