RuntimeBinderException
Represents an error that occurs when a dynamic bind in the C# runtime binder is processed.
using System;
using System.Runtime.Serialization;
namespace Microsoft.CSharp.RuntimeBinder
{
[Serializable]
public class RuntimeBinderException : Exception
{
public RuntimeBinderException()
{
}
public RuntimeBinderException(string message)
: base(message)
{
}
public RuntimeBinderException(string message, Exception innerException)
: base(message, innerException)
{
}
protected RuntimeBinderException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}