C# Class SimpleFramework.Xml.Strategy.CycleException

The CycleException is thrown when an invalid cycle is found when deserializing an object from an XML document. This usually indicates the either the XML has been edited incorrectly or has been corrupted. Conditions that this exception is thrown are when there is an invalid reference or a duplicate identifier.
Inheritance: SimpleFramework.Xml.Core.PersistenceException
Exibir arquivo Open project: ngallagher/simplexml

Public Methods

Method Description
CycleException ( String text, Object list ) : SimpleFramework.Xml.Core

Constructor for the CycleException object. This constructor takes a format string an a variable number of object arguments, which can be inserted into the format string.

CycleException ( Throwable cause, String text, Object list ) : SimpleFramework.Xml.Core

Constructor for the CycleException object. This constructor takes a format string an a variable number of object arguments, which can be inserted into the format string.

Method Details

CycleException() public method

Constructor for the CycleException object. This constructor takes a format string an a variable number of object arguments, which can be inserted into the format string.
public CycleException ( String text, Object list ) : SimpleFramework.Xml.Core
text String /// a format string used to present the error message ///
list Object /// a list of arguments to insert into the string ///
return SimpleFramework.Xml.Core

CycleException() public method

Constructor for the CycleException object. This constructor takes a format string an a variable number of object arguments, which can be inserted into the format string.
public CycleException ( Throwable cause, String text, Object list ) : SimpleFramework.Xml.Core
cause Throwable /// the source exception this is used to represent ///
text String /// a format string used to present the error message ///
list Object /// a list of arguments to insert into the string ///
return SimpleFramework.Xml.Core