Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Domain/Exceptions/InvalidStateException.cs @ 117:7ef7e4bb71f6
manejo de mensajes al usuario
author | Nelo@Kenia.neluz.int |
---|---|
date | Sun, 19 Jun 2011 13:35:34 -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)) { } } }