|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
DataStoreException.java | - | 0% | 0% | 0% |
|
1 |
package com.diasparsoftware.store;
|
|
2 |
|
|
3 |
|
|
4 |
public class DataStoreException extends RuntimeException { |
|
5 | 0 |
public DataStoreException() {
|
6 | 0 |
super();
|
7 |
} |
|
8 |
|
|
9 | 0 |
public DataStoreException(Exception cause) {
|
10 | 0 |
super(cause);
|
11 |
} |
|
12 |
|
|
13 | 0 |
public DataStoreException(String message, Exception cause) {
|
14 | 0 |
super(message, cause);
|
15 |
} |
|
16 |
|
|
17 | 0 |
public DataStoreException(String message) {
|
18 | 0 |
super(message);
|
19 |
} |
|
20 |
} |
|
21 |
|
|