changeset 18:8ed4a806ebe0

corrección de excepeción lanzada si no hay usuario autenticado al proponer un evento
author nelo@MTEySS.neluz.int
date Mon, 14 Mar 2011 00:26:44 -0300
parents 9a07d3091a40
children 74eb4577d447
files Agendas/trunk/src/Agendas.Domain/Agenda.cs
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Domain/Agenda.cs	Mon Mar 14 00:25:34 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Domain/Agenda.cs	Mon Mar 14 00:26:44 2011 -0300
@@ -49,7 +49,7 @@
 			if (string.IsNullOrWhiteSpace(evento.Titulo))
 				throw new ValidationException();
             if (NoEstaAutenticado(_seguridad))
-                throw new ValidationException();
+                throw new UsuarioNoAutenticadoException();
 			_eventosRepository.Save(evento);
 		}