public void MetodoInstancia() { try { MiClase auxMiClase = new MiClase("Excepcion Una Excepcion"); } catch (Exception e) { throw new MiExcepcion("Excepcion Mi Excepcion", e); } }
public MiClase(string mensaje) { try { MiClase auxClase = new MiClase(); } catch (Exception e) { throw new UnaExcepcion(mensaje, e); } }