dyaml.exception
D:
YAML exceptions and exception related code.
- class YAMLException: object.Exception;
Base class for all exceptions thrown by D:YAML.
- this(string msg);
Construct a YAMLException with specified message.
- struct Mark;
Position in a YAML stream, used for error messages.
- this(in uint line, in uint column);
Construct a Mark with specified line and column in the file.
- const string toString();
Get a string representation of the mark.