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            /**
011             * Constructor of the class
012             * @param message
013             */
014            public CacheException(String message){
015                    super(message);
016            }
017    }