RuntimeBinderInternalCompilerException
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 RuntimeBinderInternalCompilerException : Exception
{
public RuntimeBinderInternalCompilerException()
{
}
public RuntimeBinderInternalCompilerException(string message)
: base(message)
{
}
public RuntimeBinderInternalCompilerException(string message, Exception innerException)
: base(message, innerException)
{
}
protected RuntimeBinderInternalCompilerException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}