/* * SpaceException.java * * Created on February 16, 2007, 6:09 PM * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package diskCacheV111.services.space; /** * * @author timur */ public class SpaceException extends Exception{ private static final long serialVersionUID = 6138446612324256533L; /** Creates a new instance of SpaceException */ public SpaceException() { super(); } public SpaceException(String message) { super(message); } public SpaceException(String message,Throwable cause) { super(message,cause); } public SpaceException(Throwable cause) { super(cause); } }