Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ConcurrentSaveException |
|
| 1.0;1 |
1 | /* | |
2 | * Created on Jan 10, 2008 by wyatt | |
3 | */ | |
4 | package org.homeunix.thecave.buddi.model.impl; | |
5 | ||
6 | import ca.digitalcave.moss.application.document.exception.DocumentSaveException; | |
7 | ||
8 | public class ConcurrentSaveException extends DocumentSaveException { | |
9 | private static final long serialVersionUID = 1L; | |
10 | ||
11 | public ConcurrentSaveException() { | |
12 | 0 | super(); |
13 | 0 | } |
14 | ||
15 | public ConcurrentSaveException(String message) { | |
16 | 0 | super(message); |
17 | 0 | } |
18 | } |