annotate Agendas/trunk/src/Agendas.Domain/Exceptions/InvalidStateException.cs @ 126:6012f2becf97
Se agrega instalación de nuget package para el calendario de google.
author |
alabra |
date |
Tue, 28 Jun 2011 23:35:22 -0400 |
parents |
c5034884c7d7 |
children |
|
rev |
line source |
104
|
1 using System;
|
|
2 using System.Globalization;
|
|
3
|
|
4 namespace AltNetHispano.Agendas.Domain.Exceptions
|
|
5 {
|
|
6 public class InvalidStateException : Exception
|
|
7 {
|
|
8 public InvalidStateException(string state)
|
|
9 : base(string.Format(CultureInfo.InvariantCulture, "El estado '{0}' no es valido", state))
|
|
10 {
|
|
11 }
|
|
12 }
|
|
13 } |