class MyError extends Error {
constructor( ...params) {
super(...params);
this.message = [...params];
this.name = '[ERROR]';
}
}
참조
https://helloworldjavascript.net/pages/290-exception.html
'TroubleShooting' 카테고리의 다른 글
[ Next.js ] Error: next-image-unconfigured-host (0) | 2024.01.08 |
---|---|
[ style X ] Error:stylex.create should never be called. It should be compiled away. (1) | 2024.01.04 |
[ Emotion ] props 넘겨줄 때 타입 에러 (0) | 2023.12.16 |
Hydration (0) | 2023.10.26 |
[ Error ] UnhandledPromiseRejection (0) | 2023.10.22 |