01: /*
02: * Copyright (c) 2002-2003 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.oscache.base.persistence;
06:
07: /**
08: * Exception thrown when an error occurs in a PersistenceListener implementation.
09: *
10: * @version $Revision: 254 $
11: * @author <a href="mailto:fbeauregard@pyxis-tech.com">Francois Beauregard</a>
12: */
13: public final class CachePersistenceException extends Exception {
14: /**
15: * Creates new CachePersistenceException without detail message.
16: */
17: public CachePersistenceException() {
18: }
19:
20: /**
21: * Constructs an CachePersistenceException with the specified detail message.
22: *
23: * @param msg the detail message.
24: */
25: public CachePersistenceException(String msg) {
26: super(msg);
27: }
28: }
|