package ve.gob.cenditel.tibisaymovil; /** * Tried to create a file wich already exists in the filesystem. * * @author José M. Prieto (jmprieto@emergya.com) */ public class FileAlreadyExistsException extends Exception { private static final long serialVersionUID = -9109177868018648551L; public FileAlreadyExistsException(String filename) { super(filename); } }