Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Domain/Exceptions/InvalidStateException.cs @ 288:a6037c6c88d8
Se soluciona bug #198 Bug: Summary incorrecto en Google Calendar.
Se parametriza la hora en el mensaje.
author | user@MECHUQUE |
---|---|
date | Mon, 30 Jan 2012 01:52:47 -0300 |
parents | c5034884c7d7 |
children |
line wrap: on
line source
using System; using System.Globalization; namespace AltNetHispano.Agendas.Domain.Exceptions { public class InvalidStateException : Exception { public InvalidStateException(string state) : base(string.Format(CultureInfo.InvariantCulture, "El estado '{0}' no es valido", state)) { } } }