/* $Id: CacheManageException.java,v 1.1 2004/01/09 16:55:42 burkhard Exp $
 * Created on 21.05.2003 by sell
 *
 */
package de.skyrix.zsp.logic.cache;

/**
 * 
 * @author sell
 * @version 
 */
public class CacheManageException extends Exception {
  public CacheManageException() {
    super();
  }
  
  public CacheManageException(String s){
    super(s);
  }
}
