blob: 6f3c1b0bdf07996c5f6b249f77466fa8caa6f3c8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
class CustomError extends Error {
constructor(message: string) {
super(message);
this.name = "CustomError";
}
}
const error = new CustomError("custom error");
console.log(error.stack);
throw error;
|