Browse Source

fix bug in errorHandler

master
Brett Langdon 12 years ago
parent
commit
710ec7ea49
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/server.js

+ 1
- 1
lib/server.js View File

@ -67,7 +67,7 @@ server.prototype.rootHandler = function(request, response){
};
server.prototype.errorHandler = function(error){
throw Error("YAPS, HTTP Server Error:", error);
throw Error("YAPS, HTTP Server Error:" + error);
};
server.prototype.registerPlugin = function(plugin_constructor){


Loading…
Cancel
Save