Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Domain/Exceptions/AccionNoSoportadaException.cs @ 203:04972ef8b6d2
Ticket 3: Cuando se confirma un evento, se agrega un mensaje recordatorio para agendar manualmente en algun servicio FutureTwitts.
author | juanjose.montesdeocaarbos |
---|---|
date | Wed, 24 Aug 2011 08:40:18 -0300 |
parents | 9bfdd5bf3ad2 |
children |
line wrap: on
line source
using System; using System.Globalization; namespace AltNetHispano.Agendas.Domain.Exceptions { public class AccionNoSoportadaException : Exception { public AccionNoSoportadaException(Type stateType, Accion accion) : base(string.Format(CultureInfo.InvariantCulture, "No se puede realizar la accion '{0}' en el estado '{1}'", accion, stateType.Name)) { } } }