C# Класс 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.
Наследование: SimpleFramework.Xml.Core.PersistenceException
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

CycleException() публичный Метод

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 ///
Результат SimpleFramework.Xml.Core

CycleException() публичный Метод

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 ///
Результат SimpleFramework.Xml.Core