annotate Agendas/trunk/src/Agendas.Domain/Exceptions/InvalidStateException.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 |
c5034884c7d7 |
children |
|
rev |
line source |
104
|
1 using System;
|
|
2 using System.Globalization;
|
|
3
|
|
4 namespace AltNetHispano.Agendas.Domain.Exceptions
|
|
5 {
|
|
6 public class InvalidStateException : Exception
|
|
7 {
|
|
8 public InvalidStateException(string state)
|
|
9 : base(string.Format(CultureInfo.InvariantCulture, "El estado '{0}' no es valido", state))
|
|
10 {
|
|
11 }
|
|
12 }
|
|
13 } |