Quantcast
Channel: Fast Lightweight Expression Evaluator
Viewing all articles
Browse latest Browse all 96

Closed Issue: Implement standard constructors on all custom exceptions [3823]

$
0
0
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

Viewing all articles
Browse latest Browse all 96

Trending Articles