view Agendas/trunk/src/Agendas.Domain/Exceptions/EventoNotFoundException.cs @ 182:beeb48ddb44a

Warning con los errores que se guarden en el log del track de un evento durante una notificación (twitter, calendar, blog)
author nelopauselli
date Mon, 08 Aug 2011 21:57:10 -0300
parents 3059a5f8930f
children
line wrap: on
line source

using System;

namespace AltNetHispano.Agendas.Domain.Exceptions
{
	public class EventoNotFoundException : Exception
	{
		public EventoNotFoundException(Guid eventoId)
			: base(string.Format("No es posible encontrar el evento con id: {0}", eventoId))
		{
		}
	}
}