|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
DataVersioningException.java | - | 50% | 33.3% | 40% |
|
1 | package org.jboss.cache.optimistic; | |
2 | ||
3 | import org.jboss.cache.CacheException; | |
4 | ||
5 | /** | |
6 | * Denotes exceptions to do with data versioning in optimistic locking | |
7 | * | |
8 | * @author <a href="mailto:manik@jboss.org">Manik Surtani</a> | |
9 | * @since 1.4.1 | |
10 | */ | |
11 | public class DataVersioningException extends CacheException | |
12 | { | |
13 | ||
14 | private static final long serialVersionUID = 7234086816998964356L; | |
15 | ||
16 | 0 | public DataVersioningException() |
17 | { | |
18 | } | |
19 | ||
20 | 28 | public DataVersioningException(String msg) |
21 | { | |
22 | 28 | super(msg); |
23 | } | |
24 | ||
25 | 0 | public DataVersioningException(String msg, Throwable cause) |
26 | { | |
27 | 0 | super(msg, cause); |
28 | } | |
29 | } |
|