Javascript catch handling issue

This commit is contained in:
Kegan Myers 2014-03-04 17:29:09 -06:00
parent 23c63dfdd3
commit 7e437a53c5
1 changed files with 3 additions and 2 deletions

View File

@ -78,9 +78,10 @@ module Typertext.Http {
} else if (xhr.status >= 500 && xhr.status < 600) {
//Again
throw new HttpException("The server returned an error response state", xhr.status, new HttpResponse(HttpResponseStatus.serverError, getHeader, xhr.status, xhr.responseText));
} else {
//And again
throw new HttpException("An unknown error has occurred", -2, new HttpResponse(HttpResponseStatus.unknownError, getHeader, xhr.status, xhr.responseText));
}
//And again
throw new HttpException("An unknown error has occurred", -2, new HttpResponse(HttpResponseStatus.unknownError, getHeader, xhr.status, xhr.responseText));
}
};