C# Class NSoft.NFramework.Collections.C5.ReadOnlyCollectionException

An exception thrown by an update operation on a Read-Only collection or dictionary.

This exception will be thrown unconditionally when an update operation (method or set property) is called. No check is made to see if the update operation, if allowed, would actually change the collection.

Inheritance: System.Exception
Show file Open project: debop/NFramework

Public Methods

Method Description
ReadOnlyCollectionException ( ) : System

Create a simple exception with no further explanation.

ReadOnlyCollectionException ( string message ) : System

Create the exception with an explanation of the reason.

Method Details

ReadOnlyCollectionException() public method

Create a simple exception with no further explanation.
public ReadOnlyCollectionException ( ) : System
return System

ReadOnlyCollectionException() public method

Create the exception with an explanation of the reason.
public ReadOnlyCollectionException ( string message ) : System
message string
return System