1 /*2 * Copyright (c) 2002-2003 by OpenSymphony3 * 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 public CachePersistenceException() {19 }20 21 /**22 * Constructs an CachePersistenceException with the specified detail message.23 *24 * @param msg the detail message.25 */26 public CachePersistenceException(String msg) {27 super(msg);28 }29 }30