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
파일 보기 프로젝트 열기: ngallagher/simplexml

공개 메소드들

메소드 설명
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