Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/Views/Shared/Error.cshtml @ 82:c8897b1c6f49
Manejo de excepciones en sitio web
author | nelopauselli |
---|---|
date | Tue, 24 May 2011 19:31:10 -0300 |
parents | 08dbe42fdde1 |
children |
line wrap: on
line source
@model System.Web.Mvc.HandleErrorInfo @using AltNetHispano.Agendas.Domain.Exceptions; <h2>Error</h2> @if (Model.Exception is EventoNotFoundException) { <p>No se puede encontrar el evento al que está intentado acceder</p> } else { <p>Sorry, an error occurred while processing your request.</p> }