summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/external-editor/main/errors/LaunchEditorError.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/eslint/node_modules/external-editor/main/errors/LaunchEditorError.js')
-rw-r--r--tools/node_modules/eslint/node_modules/external-editor/main/errors/LaunchEditorError.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/tools/node_modules/eslint/node_modules/external-editor/main/errors/LaunchEditorError.js b/tools/node_modules/eslint/node_modules/external-editor/main/errors/LaunchEditorError.js
new file mode 100644
index 0000000000..d956a1b733
--- /dev/null
+++ b/tools/node_modules/eslint/node_modules/external-editor/main/errors/LaunchEditorError.js
@@ -0,0 +1,29 @@
+// Generated by CoffeeScript 1.12.7
+
+/*
+ ExternalEditor
+ Kevin Gravier <kevin@mrkmg.com>
+ MIT
+ */
+
+(function() {
+ var LaunchEditorError,
+ extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
+ hasProp = {}.hasOwnProperty;
+
+ LaunchEditorError = (function(superClass) {
+ extend(LaunchEditorError, superClass);
+
+ LaunchEditorError.prototype.message = 'Failed launch editor';
+
+ function LaunchEditorError(original_error) {
+ this.original_error = original_error;
+ }
+
+ return LaunchEditorError;
+
+ })(Error);
+
+ module.exports = LaunchEditorError;
+
+}).call(this);