source: dispositivos_moviles/TibisayMovil/src/ve/gob/cenditel/tibisaymovil/FileAlreadyExistsException.java @ 37c4d43

Last change on this file since 37c4d43 was 09c6eb7, checked in by Antonio Araujo Brett <aaraujo@…>, 11 years ago

Se agregan al control de versiones clases y archivos de layout para la gestión del repositorio de certificados

  • Property mode set to 100644
File size: 388 bytes
Line 
1package ve.gob.cenditel.tibisaymovil;
2
3/**
4 * Tried to create a file wich already exists in the filesystem.
5 *
6 * @author José M. Prieto (jmprieto@emergya.com)
7 */
8public class FileAlreadyExistsException extends Exception {
9
10    private static final long serialVersionUID = -9109177868018648551L;
11
12    public FileAlreadyExistsException(String filename) {
13        super(filename);
14    }
15}
Note: See TracBrowser for help on using the repository browser.