blob: fa535836a3b8b88aef42634afc2b6e98a263daae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
export class DocBookError extends Error {
static {
this.prototype.name = "DocBookError";
}
}
export class SlideError extends Error {
static {
this.prototype.name = "SlideError";
}
}
export class XmlParseError extends Error {
static {
this.prototype.name = "XmlParseError";
}
}
|