Constructor SkillParseException
SkillParseException()
Initializes a new instance of the SkillParseException class.
public SkillParseException()
SkillParseException(string)
Initializes a new instance of the SkillParseException class with the specified error message.
public SkillParseException(string message)
Parameters
messagestringThe message that describes the error.
SkillParseException(string, string)
Initializes a new instance of the SkillParseException class with the specified error message and skill path.
public SkillParseException(string message, string skillPath)
Parameters
messagestringThe message that describes the error.
skillPathstringThe path to the skill directory.
SkillParseException(string, string, int)
Initializes a new instance of the SkillParseException class with the specified error message, skill path, and line number.
public SkillParseException(string message, string skillPath, int lineNumber)
Parameters
messagestringThe message that describes the error.
skillPathstringThe path to the skill directory.
lineNumberintThe line number where the error occurred.
SkillParseException(string, Exception)
Initializes a new instance of the SkillParseException class with the specified error message and inner exception.
public SkillParseException(string message, Exception innerException)
Parameters
messagestringThe message that describes the error.
innerExceptionExceptionThe exception that caused this exception.
SkillParseException(string, string, Exception)
Initializes a new instance of the SkillParseException class with the specified error message, skill path, and inner exception.
public SkillParseException(string message, string skillPath, Exception innerException)