react-native-codegen
Version:
⚛️ Code generation tools for React Native
30 lines (25 loc) • 746 B
JavaScript
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*
* @format
*/
;
class ParserError extends Error {
constructor(hasteModuleName, astNodeOrNodes, message) {
super(`Module ${hasteModuleName}: ${message}`);
this.nodes = Array.isArray(astNodeOrNodes)
? astNodeOrNodes
: [astNodeOrNodes];
// assign the error class name in your custom error (as a shortcut)
this.name = this.constructor.name;
// capturing the stack trace keeps the reference to your error class
Error.captureStackTrace(this, this.constructor);
}
}
module.exports = {
ParserError,
};