C# Class YamlDotNet.Core.SemanticErrorException

Exception that is thrown when a semantic error is detected on a YAML stream.
Inheritance: YamlDotNet.Core.YamlException
ファイルを表示 Open project: unitystation/unitystation

Public Methods

Method Description
SemanticErrorException ( YamlDotNet.Core.Mark start, YamlDotNet.Core.Mark end, string message ) : System

Initializes a new instance of the SemanticErrorException class.

SemanticErrorException ( string message ) : System

Initializes a new instance of the SemanticErrorException class.

SemanticErrorException ( string message, Exception inner ) : System

Initializes a new instance of the SemanticErrorException class.

Method Details

SemanticErrorException() public method

Initializes a new instance of the SemanticErrorException class.
public SemanticErrorException ( YamlDotNet.Core.Mark start, YamlDotNet.Core.Mark end, string message ) : System
start YamlDotNet.Core.Mark
end YamlDotNet.Core.Mark
message string
return System

SemanticErrorException() public method

Initializes a new instance of the SemanticErrorException class.
public SemanticErrorException ( string message ) : System
message string The message.
return System

SemanticErrorException() public method

Initializes a new instance of the SemanticErrorException class.
public SemanticErrorException ( string message, Exception inner ) : System
message string The message.
inner Exception The inner.
return System