C# Class YAML.ParseException

Exception class for YAML parse errors.
Inheritance: System.Exception
显示文件 Open project: agardiner/hfmcmd

Public Properties

Property Type Description
FileName string
Line int

Public Methods

Method Description
ParseException ( string msg, Exception inner, string fileName, int line ) : System

Constructs an instance of a ParseException wrapping an inner exception.

ParseException ( string msg, string fileName, int line ) : System

Constructs an instance of a ParseException

Method Details

ParseException() public method

Constructs an instance of a ParseException wrapping an inner exception.
public ParseException ( string msg, Exception inner, string fileName, int line ) : System
msg string
inner System.Exception
fileName string
line int
return System

ParseException() public method

Constructs an instance of a ParseException
public ParseException ( string msg, string fileName, int line ) : System
msg string
fileName string
line int
return System

Property Details

FileName public_oe property

public string FileName
return string

Line public_oe property

public int Line
return int