view Agendas/trunk/src/Agendas.Domain/Exceptions/InvalidStateException.cs @ 234:cc71f96ac134

Combinar
author juanjose.montesdeocaarbos
date Tue, 04 Oct 2011 20:36:27 -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))
    {
    }
  }
}