|
|||||||||||||||||||
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 | |||||||||||||||
CachePersistenceException.java | - | 100% | 50% | 66.7% |
|
1 |
/*
|
|
2 |
* Copyright (c) 2002-2003 by OpenSymphony
|
|
3 |
* All rights reserved.
|
|
4 |
*/
|
|
5 |
package com.opensymphony.oscache.base.persistence;
|
|
6 |
|
|
7 |
|
|
8 |
/**
|
|
9 |
* Exception thrown when an error occurs in a PersistenceListener implementation.
|
|
10 |
*
|
|
11 |
* @version $Revision: 1.1 $
|
|
12 |
* @author <a href="mailto:fbeauregard@pyxis-tech.com">Francois Beauregard</a>
|
|
13 |
*/
|
|
14 |
public final class CachePersistenceException extends Exception { |
|
15 |
/**
|
|
16 |
* Creates new CachePersistenceException without detail message.
|
|
17 |
*/
|
|
18 | 0 |
public CachePersistenceException() {
|
19 |
} |
|
20 |
|
|
21 |
/**
|
|
22 |
* Constructs an CachePersistenceException with the specified detail message.
|
|
23 |
*
|
|
24 |
* @param msg the detail message.
|
|
25 |
*/
|
|
26 | 19 |
public CachePersistenceException(String msg) {
|
27 | 19 |
super(msg);
|
28 |
} |
|
29 |
} |
|
30 |
|
|