aboutsummaryrefslogtreecommitdiff
path: root/node_modules/ava/lib/ava-error.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/ava/lib/ava-error.js')
-rw-r--r--node_modules/ava/lib/ava-error.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/node_modules/ava/lib/ava-error.js b/node_modules/ava/lib/ava-error.js
new file mode 100644
index 000000000..05df6b349
--- /dev/null
+++ b/node_modules/ava/lib/ava-error.js
@@ -0,0 +1,10 @@
+'use strict';
+
+class AvaError extends Error {
+ constructor(message) {
+ super(message);
+ this.name = 'AvaError';
+ }
+}
+
+module.exports = AvaError;