001 package railo.commons.io.cache.exp; 002 003 import java.io.IOException; 004 005 /** 006 * Exceptin throwed by Cache or CacheEntry 007 */ 008 public class CacheException extends IOException { 009 010 private static final long serialVersionUID = -7937763383640628704L; 011 012 /** 013 * Constructor of the class 014 * @param message 015 */ 016 public CacheException(String message){ 017 super(message); 018 } 019 }