Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Domain/Exceptions/AccionNoSoportadaException.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 | 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)) { } } }