view Agendas/trunk/src/Agendas.Domain/Exceptions/EventoNotFoundException.cs @ 55:39f5258ebdcf

Agregando referencias con NuGet
author nelopauselli
date Mon, 16 May 2011 20:10:45 -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))
		{
		}
	}
}