Tagged Questions
-3
votes
1answer
57 views
Exception of type 'System.OutOfMemoryException' was thrown. after page load in asp.net c# [closed]
I have a web form in asp.net that every time I try to access it, it throws the following exception
Exception of type 'System.OutOfMemoryException' was thrown
It does enter the page load and finishes ...
1
vote
1answer
111 views
ExtJs exceptions immediately break all ExtJs components on a page
If you've ever worked with ExtJs, you've probably run into the nefarious "Cannot read property 'dom' of null" exception. For me, it usually happens inside doInsert (the last of 14 stacks in the outer ...
2
votes
3answers
46 views
Catch statement does not catch thrown error
For some reason this code gives me an uncaught exception error. It seems the catch block is not catching the error. Are try catch blocks scoped in such a way that I cannot throw an error in a nested ...
0
votes
0answers
70 views
Ultidev web server fails to create ActiveXObject(“Outlook.Application”) object
I am hosting an intranet ASP.net site using Ultidev web server. Test Page contains JavaScript as below. Upon running this hosted page from ultidev web server, it is giving me the exception:
...
3
votes
3answers
60 views
What's the different between Error and Exception in Javascript
It seems that Error and Exception are the same things, both of them can be throwed by 'throw' statement, and catched by 'try-catch' block.
0
votes
0answers
41 views
How to track javascript errors in production?
I minify my all javascript files when deploying to the production server and it became really hard to track javascript errors via window.onerror event. It doesn't provide a stack trace or column ...
0
votes
0answers
43 views
Javascript Dealing With Errors
I wanted to know what javascript is doing when it encounters errors (uncaught with a catch block) . Let's say I have a simple syntax error , I forgot to close a function call with a closing ...
0
votes
2answers
65 views
continue javascript execution after error without a lot of try catch statements
let's say, i have 50 lines of javascript statements in a block. is there a way that the script continues to run if any one of the lines got an error, without using a lot of try catch blocks for each ...
1
vote
1answer
62 views
Is throwing an exception in javascript/nodejs really that bad?
I'm reading about error handling in nodejs, and I came across something unsettling while reading this document:
http://nodejs.org/api/domain.html
It says "By the very nature of how throw works in ...
1
vote
0answers
31 views
Is it possible to prevent specific exceptions from being thrown?
Is there a way to 'whitelist' - or prevent - specific errors from being thrown in a try catch block?
For instance, say I have an exception that I know about and don't want to log. However, I want to ...
0
votes
1answer
231 views
Java Jackson: deserialize complex polymorphic object model: JsonMappingException: Unexpected token (START_OBJECT), expected VALUE_STRING
I have this tree of objects
A
B extends A
C extends B
D extends B
E extends C
F extends A and has one reference to A
A has the following annotation
...
7
votes
3answers
154 views
Why would an exception cause resource leaks in Node.js?
UPDATE
I've Written a blog explaining the answer to this a bit better now. Check it out
Original Question:
If you look at the beginning of the Node.js documentation for domains it states:
By ...
4
votes
1answer
134 views
How can I get the stack trace for a JavaScript exception in IE 8?
When a JavaScript exception is thrown in IE 8, how can I see its stack trace?
For example, the following code from jQuery catches an exception and rethrows it. Debugging in Visual Studio (2012), ...
0
votes
1answer
14 views
Inspecting custom exceptions
I'm trying to create a custom exception with some useful debug information:
var customError = function(name, message) {
this.message = message;
this.name = name;
this.prototype = new ...
0
votes
1answer
130 views
jQuery-UI: Uncaught SyntaxError: Unexpected token [closed]
Here is what I have in HTML:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" ...
0
votes
1answer
107 views
How to send the error message alert in Jquery DataTable
I am using the JQuery Data Table in mvc format. Binding the JQuery data table, using condition. But i don't know how to else the condition , show the error message. I need to show the error alert ...
1
vote
1answer
72 views
Javascript onclick, throws an uncatchable exception
Hello I have this piece of code but for some reason it doesn't work. I have tried to look at the google chrome javascript console and it looks like it is throwing some sort of exception. But when the ...
-4
votes
3answers
56 views
JavaScript warning on var element [closed]
Have defined:
var ru_cryptopro_npcades_10_native_bridge = {
callbacksCount : 1,
callbacks : {},
resultForCallback : function resultForCallback(callbackId, resultArray) {
var ...
0
votes
1answer
175 views
SignalR: Catching server exceptions on Javascript client with properties intact
I got in a simple sample on the server-side hub this method:
public int CanThrowException(int input)
{
if (0==input)
throw new ArgumentOutOfRangeException("input", "was ...
0
votes
0answers
57 views
Opera can't find find element
I tried running my website in a couple of different browsers. It runs perfectly in all the browsers like firefox, chrome and internet explorer.
When I tried running it in Opera it crashed on a ...
0
votes
1answer
129 views
NOT_FOUND_ERR: DOM Exception 8 - javascript
My code:
function SubmitCommentAJAX(i)
{
var thecomment = i.parentNode.getElementsByClassName("styled")[0].innerHTML;
var commentBox = ...
2
votes
1answer
62 views
how do you throw a custom error class in Javascript?
in JS, you can throw a "new Error(message)", but if you want to detect the type of the exception and do something different with the message, it is not so easy.
This post: ...
2
votes
2answers
75 views
How to check for a specific exception in JavaScript?
I am writing a Node.js application, and inside one of its code blocks various exceptions may be thrown (by 3rd party code I call). Now I want to react on these exceptions, hence I do:
try {
// Call ...
0
votes
2answers
51 views
js exception position
For the JavaScript code like this:
try {
MyJob.process();
} catch(e) {
console.log("Exception occur!");
}
I run the code in Chrome or FireFox, When the exception happens, the line number of ...
2
votes
0answers
1k views
Jquery.min.js load exception 0x800a139e
(I modified this post to reflect comments below and now am posting error in non-mollified version.)
JQuery: /*! jQuery v1.8.3 jquery.com | jquery.org/license */
Browser: Internet Explorer (IE) v10 ...
-1
votes
1answer
160 views
Throw exception outside try block, nodeJS,JavaScript
Is it possible to throw an exception outside a try block? If I'm not mistaken in Java you can declare that a function throws an exception and then just throw it up the function chain, with no ...
0
votes
3answers
153 views
Javascript popup with Exception details not appearing
I have a try-catch block:
try{
//stuff here
}catch(Exception x){
tran.Rollback();
Response.Write("<script>alert('Error details: " + x + "');</script>");
...
1
vote
2answers
81 views
How to catch errors without try/catch OR wrap code with try/catch in runtime?
This question divides to 2 really :
Can i catch an exception with js without using try catch? doesn't have to "catch" it as in to continue executing the code but to be notified that an exception as ...
0
votes
1answer
177 views
Chrome ext:appendChildTypeError: Cannot call method 'appendChild' of null when trying to build overlay div
i try to build simple overlay div that comes from chrome extention , its working most of the times
but i noticed that is few sites like : http://en.wikipedia.org/wiki/Main_Page
im getting this error ...
0
votes
2answers
84 views
html form not working after putting exception
i've created exception using JS so that user are only allowed to input numbers to the html form field. this is working nicely but the problem is, the Submit button isn't working anymore. if i remove ...
5
votes
2answers
166 views
throw Error('msg') vs throw new Error('msg')
var err1 = Error('message');
var err2 = new Error('message');
What's the difference? Looking at them in the chrome console, they look identical. Same properties on the object and the same __proto__ ...
1
vote
1answer
120 views
Something about this 'NOT_FOUND_ERR: Dom exception 8' confuses me
Well, here I continue, trying to learn this very nice language... So I previously had a very ugly code full of 'document.write()' and more ugly things, and now I am transforming it into a very nice ...
1
vote
3answers
87 views
Mousedown jquery except or not
I have the following javascript, I don't want this mousedown function to fire if the user is clicking on a delete div inside the .field_trip_mini_div. The delete div id is 'delete'. What code should I ...
1
vote
1answer
223 views
Throwing custom exceptions in Javascript. Which style to use?
Douglas Crockford recommends doing something like this:
throw {
name: "System Error",
message: "Something horrible happened."
};
But you could also do something like this:
function ...
1
vote
4answers
73 views
How should I deal with invalid input to an object constructor in JavaScript
I'm trying to get my head around OOP in Javascript (I've never really used OOP in any other language either, so this is my first experience of it). I've written a class that requires an input for the ...
0
votes
1answer
83 views
JavaScript Factory class throws errors if function name is not a 'constructed string'
I have a Factory class that I use in JavaScript to dynamically load a class file over AJAX and then return an object. I have run into a VERY peculiar bug in the system though that throws errors in ...
1
vote
2answers
2k views
JQUERY “syntax error, unrecognized expression” received
The error below appears in firebug:
Error: Syntax error, unrecognized expression: >
jquery line 3
I can't understand what this is, i tried searching for that character in my code but I ...
1
vote
2answers
133 views
How to handle a exception thrown in c# by a javascript web app?
I'm developing a web application with a client side build with html5 and javascript using, overall, dojo framework (I'm using xhr.post function to communicate with server). The server side is an asmx ...
0
votes
0answers
148 views
What do javascript core exception's fields mean?
I have a project under ios and use Javascript Core for interpreting java script code.
Apparently, there is a mistake in js code, so I call a method "execute" on some js object "context", and the ...
0
votes
1answer
75 views
SSJ - Non-thowable exception
today I had a strange problem in my serverside javascript.
I have a scriptLibrary in which I have some error-handling (try {...} catch(e) {...})
But somethings wrong with the variable "e". On the ...
0
votes
2answers
190 views
Handling errors for broken JSON
If the element #the-json is empty it will cause this error:
Uncaught SyntaxError: Unexpected end of input
For the following code:
myJSON = JSON.parse($("#the-json").attr('value'));
How should ...
3
votes
1answer
656 views
Catch iframe exceptions
When I set the src attribute on an iframe, sometimes an error is logged to the console (seems to be an uncaught exception), and the destination never loads.
For example, if I set myiframe.src = ...
0
votes
1answer
1k views
jQuery Uncaught TypeError: Cannot call method 'apply' of undefined
I'm getting the error on the title. See the screenshot at http://i49.tinypic.com/s6jc03.png
The error is not always there, sometimes I refresh and get no error.
I already put all the code inside ...
1
vote
0answers
440 views
Applet using JNA called by Javascript = Access Denied
I coded an Applet where I communicate with a device using JNA. I need to get a value readed by the device and save it in the database. The solution that I proposed to myself is to call an Applet ...
2
votes
1answer
58 views
Can an exception within one script tag ever interrupt other script tags?
If I make a page like this,
<script>
b00m;
alert("A");
</script>
<script>
alert("B");
</script>
<script>
alert("C");
</script>
It seems all the ...
1
vote
2answers
816 views
Javascript HTMLDOM appendChild results in DOM exception 8
I have written the following code
function byId(id) {
return document.getElementById(id);
}
function addElm(root,elm) {
document.createElement(elm);
if(!root) {
root = document;
}
...
1
vote
1answer
380 views
How to print full backtrace for JavaScript exception?
When an exception is thrown in my Node.js app, the stack trace printed is limited to a depth of 10. Unfortunately, sometimes this is not deep enough to find the source of the exception. Is there a way ...
0
votes
1answer
60 views
jsTestDriver: org.jvyaml.ParserException when running tests
I try to run javascript tests with jsTestDriver. When I start the tests, an exception occured.
The problem does not occur when the .conf file of jsTestDriver contains only one filepath in args, ...
1
vote
0answers
201 views
“Invalid Postback” exception on custom GridView with custom row events
I think I have figured out what happens with this program.
This is part of the markup.
<asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
...
0
votes
1answer
85 views
Handling JavaScript exceptions from Silverlight
I'm having trouble adding proper exception handling to existing code that makes heavy use of Silverlight - JavaScript interoperability. In this case, my JavaScript can throw an exception that I want ...

