blob: c4e6faf3c82766e302252f156e09345972dbde9f (
plain)
1
2
3
4
5
6
7
8
9
|
import { IUniqueName } from '../utils';
import { Node } from './base';
export class Error extends Node {
constructor(id: IUniqueName, public readonly code: number,
public readonly reason: string) {
super(id);
}
}
|