Thanks for adding the [Serializable] attribute to custom exceptions, but we didn't quite make it deserializable yet. Please implement the 4 standard constructors on all custom exceptions:
public InvalidExpressionException()
{
}
public InvalidExpressionException(string s)
: base( s )
{
}
protected InvalidExpressionException(SerializationInfo info, StreamingContext context)
: base( info, context )
{
}
public InvalidExpressionException(string message, Exception innerException)
: base( message, innerException )
{
}
Thanks!
~Steve
public InvalidExpressionException()
{
}
public InvalidExpressionException(string s)
: base( s )
{
}
protected InvalidExpressionException(SerializationInfo info, StreamingContext context)
: base( info, context )
{
}
public InvalidExpressionException(string message, Exception innerException)
: base( message, innerException )
{
}
Thanks!
~Steve