IronPython.Runtime.Types.ReflectedEvent.ReadOnlyException C# (CSharp) Method

ReadOnlyException() private method

private ReadOnlyException ( IronPython.Runtime.Types.PythonType dt ) : MissingMemberException
dt IronPython.Runtime.Types.PythonType
return System.MissingMemberException
        private MissingMemberException/*!*/ ReadOnlyException(PythonType/*!*/ dt) {
            Assert.NotNull(dt);
            return new MissingMemberException(String.Format("attribute '{1}' of '{0}' object is read-only", dt.Name, _tracker.Name));
        }