summaryrefslogtreecommitdiffstats
path: root/web/error.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/error.js')
-rw-r--r--web/error.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/web/error.js b/web/error.js
deleted file mode 100644
index c5c184a..0000000
--- a/web/error.js
+++ /dev/null
@@ -1,12 +0,0 @@
-/*
- * Copyright (c) 2012-2014 Kaarle Ritvanen
- * See LICENSE file for license details
- */
-
-define(function() {
- return function(msg, xhr) {
- msg += " " + xhr.statusCode().status;
- if (xhr.responseText) msg += ': ' + xhr.responseText;
- return msg;
- }
-});