Ver Mensaje Individual
  #5  
Antiguo 20-02-2009
noob noob is offline
Miembro
 
Registrado: sep 2008
Posts: 212
Reputación: 18
noob Va por buen camino
Esto es mi unidad uFicheroNoExiste.

Código Delphi [-]
unit uFicheroNoExiste;
 
interface
 
uses
  SysUtils;
 
type
  eFicheroNoExiste = class (Exception)
                         public
                           constructor Create;
                         end;
implementation
 
constructor eFicheroNoExiste.Create;
begin
  inherited Create('El fichero no existe');
end;
 
end.
Responder Con Cita