C# Class SimpleFramework.Xml.Stream.NodeException

The NodeException is thrown to indicate the state of either the input node or output node being invalid. Typically this is thrown if some illegal operation is requested.
Inheritance: System.Exception
Show file Open project: ngallagher/simplexml

Public Methods

Method Description
NodeException ( String text ) : System

Constructor for the NodeException object. This is given the message to be reported when the exception is thrown.

Method Details

NodeException() public method

Constructor for the NodeException object. This is given the message to be reported when the exception is thrown.
public NodeException ( String text ) : System
text String /// a format string used to present the error message ///
return System