|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
CachePersistenceException.java | - | 0% | 0% | 0% |
|
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 | 0 | public CachePersistenceException(String msg) { |
27 | 0 | super(msg); |
28 | } | |
29 | } |
|