Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Domain/Exceptions/AccionNoSoportadaException.cs @ 101:9bfdd5bf3ad2
Manejo de estados de los Eventos mediante state pattern (primer version)
author | jorge.rowies |
---|---|
date | Sun, 05 Jun 2011 11:10:32 -0300 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
100:cc91817a4206 | 101:9bfdd5bf3ad2 |
---|---|
1 using System; | |
2 using System.Globalization; | |
3 | |
4 namespace AltNetHispano.Agendas.Domain.Exceptions | |
5 { | |
6 public class AccionNoSoportadaException : Exception | |
7 { | |
8 public AccionNoSoportadaException(Type stateType, Accion accion) : | |
9 base(string.Format(CultureInfo.InvariantCulture, | |
10 "No se puede realizar la accion '{0}' en el estado '{1}'", | |
11 accion, stateType.Name)) | |
12 { | |
13 } | |
14 } | |
15 } |