2019-11-18 09:39:32 -05:00
|
|
|
// Ported from js-yaml v3.13.1:
|
|
|
|
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
|
|
|
|
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
|
2020-01-21 10:01:55 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2019-11-18 09:39:32 -05:00
|
|
|
|
|
|
|
import { Mark } from "./mark.ts";
|
|
|
|
|
2020-02-21 10:36:13 -05:00
|
|
|
export class YAMLError extends Error {
|
2019-11-18 09:39:32 -05:00
|
|
|
constructor(
|
|
|
|
message = "(unknown reason)",
|
|
|
|
protected mark: Mark | string = ""
|
|
|
|
) {
|
2020-02-21 10:36:13 -05:00
|
|
|
super(`${message} ${mark}`);
|
2019-11-18 09:39:32 -05:00
|
|
|
this.name = this.constructor.name;
|
|
|
|
}
|
|
|
|
|
|
|
|
public toString(_compact: boolean): string {
|
|
|
|
return `${this.name}: ${this.message} ${this.mark}`;
|
|
|
|
}
|
|
|
|
}
|