An exception is a rarely occurring (exceptional!) condition that requires deviation from the program's normal flow. Normally, an exception should not result in total failure, but instead be attended by an exception handler. Exception handling is a built-in construct in many programming languages. ...

learn more… | top users | synonyms (1)

1
vote
0answers
8 views

Handling none fatal exceptions from COM api's

I have the following code snippet which calls a COM interface api (MS Mobile API) try { MbnInterfaceManager mbnInfMgr = new MbnInterfaceManager(); IMbnInterfaceManager infMgr = ...
0
votes
2answers
23 views

Panel Controls[i] - index out of range

CONCEPTION I have a panel Profiles List on a web page. It contains multiple small panels, like a list of items contains lines. The items here are profiles. Each profile is actually a small panel ...
0
votes
0answers
4 views

Exception in thread “AWT-EventQueue-0” java.lang.ClassCastException: Cannot cast Project.Difensore to Project.Attaccante

I have a problem with my progect. this is the error: Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException: Cannot cast Project.Difensore to Project.Attaccante at ...
0
votes
0answers
13 views

SQL Exception in dynamic sql

I'm baffled and frustrated, so is 2 of my peers... I have a stored procedure that starts a transaction, does number of things (including a number of dynamic SQL statements) but as soon as it gets to ...
-1
votes
0answers
23 views

Jquery extension is taking too much memory in browser

i am trying to develop a jquery extension: (function ($) { $.fn.wbi = $.extend({ tree: function (data) { var master = $(this); data.each(function (index, element) ...
0
votes
1answer
21 views

IOException while setting configLocation in XmlWebApplicationContext object

I am getting IOException parsing XML document from ServletContext resource [/WEB-INF/servlet.xml]; nested exception is java.io.FileNotFoundException: Could not open ServletContext resource ...
0
votes
4answers
53 views

scala: exception handling in anonymous function

If I pass an anonymous function as an argument, like e.g. in this code sample: val someMap = someData.map(line => (line.split("\\|")(0), // key ...
0
votes
2answers
21 views

Exception (NoClassDefFoundError) in AsyncHttpClient

when i run benchmark program in com.ning.http.client.AsyncHttpClient i can see this type of error.. **Setting up AhcGrizzlyBenchmark... Exception in thread "main" java.lang.NoClassDefFoundError: ...
0
votes
1answer
24 views

How to catch fetchAll(PDO::FETCH_OBJ)

In my Symfony 1.4 project in one of my class.php file I used the following codes to execute query and fetch object. $statement = Doctrine_Manager::connection()->execute($query); $resultset = ...
1
vote
2answers
22 views

Error Obtaining Lock (org.neo4j.kernal.StoreLockException)

When trying to create new nodes in an already existing database, I am getting the following exception: org.neo4j.kernal.StoreLockException. The code snippit below is the actual line that results in ...
0
votes
1answer
20 views

Spring3 doesn't work @valid when json request I got 400 Bad Request error

I'm sorry I can't speak English. so my question is difficult of understand. I'm using Spring3 framework ,hibernate validator and jackson. when I request for jsondata to server. returned 400 Bad ...
0
votes
2answers
28 views

Can't Instantiate Field (instance variable) in main() method. Why?? Java

Can someone tell me what I am doing wrong here? When I have this code in Eclipse, it is telling me I cannot "make a static reference to a non-static field" when I try to set sheetName to "hi" in the ...
2
votes
4answers
53 views

empty error message in python

I'm trying to debug an error, I got a "no exception supplied" when I ran it initially and then later put in a try/except block to print out whatever the error was. try: #some code except ...
1
vote
2answers
33 views

what does the error “no exception supplied” mean?

My Django app is currently throwing this error on one of my pages, does anyone know what it eans? I would supply more detail but I don't know what this error means so I'm not sure what the relevant ...
0
votes
0answers
33 views

Cannot catch oracle exception from oracle stored procedure using php oci

Does anyone know how to catch oracle exception in php? I have a stored procedure which raise exceptions when something occur and I want to pass the message directly to browser. I have tried using try ...
0
votes
1answer
27 views

“The specified network password is not correct” exception in X509Certificate2 constructor

I have a console application which loads an X509 Certificate from a byte array as follows: var cert = new X509Certificate2(certificateContent, // byte[] password, ...
-1
votes
1answer
62 views

oracle pl/sql compare value against database in function

I have several names like: john arnold edward albert And I have a name dictionary like this: name --------------------------- john arnold edward I wrote a function to split the name in ...
0
votes
0answers
16 views

gwt SerializationException

Okay I solved the problem, thanks for reading. I've got a strange problem in my gwt project. I have the following standard package structure client server shared In shared I have an object called ...
0
votes
0answers
14 views

Suspended (exception RuntimeException)) Android - Sharedpreferences error

The debugging message is: DalvikVM[localhost:8600] Thread [<1> main] (Suspended (exception RuntimeException)) <VM does not provide monitor information> ...
0
votes
0answers
8 views

Webcam Cannot find a Player for :vfw://0

i'm tryin to take a picture in my webcam, i'm just starting to use JMF i just need to take a picture with a webcam and save it to a specified directory im using this code import java.awt.Component; ...
0
votes
2answers
36 views

Why we must handle exception for method not throwing exceptions? [duplicate]

Given public class ToBeTestHandleException{ static class A { void process() throws Exception { throw new Exception(); } } static class B extends A { void process() { ...
-3
votes
1answer
34 views

Exception Error c0000005 in VC++

Am working on VC++ Console Application. This application sends a file from Appdata\Roaming folder for a period of time. What happens is am getting this Crash error : Problem signature: Problem ...
0
votes
0answers
23 views

Xcode basic help - exception

I just started programming in Xcode and I keep getting an exception... Basically what I tried was to delete the view from the xib file and replace it with a window (or another view). And when I run ...
0
votes
3answers
37 views

How to catch InvalidOperationException thrown by Deserialize method

I use following code to read data from XML var temp = default(T); var serializer = new XmlSerializer(typeof(T)); try { TextReader textReader = new StreamReader(fileName); temp = ...
1
vote
1answer
29 views

Difference in calling sequence while rethrowing exceptions

Consider the following class with methods: a() calling b() which in turn calls c(). public class ReThrower { public static void a(int a1){ try{ a1+=1; b(a1); ...
0
votes
1answer
17 views

To see the response coming from a wcf service

When I am hitting a page, it is showing error like : Client found response content type of 'text/html; charset=utf-8', but expected 'text/xml'. in a line, where we are calling a method from wcf ...
0
votes
0answers
17 views

vb.net exception GDI+ when my controls were updated

I have a winforms application in which I automatically creates controls from instance of my own. Then the application will update these controls next to properties evoluate. So far all goes well ...
0
votes
2answers
25 views

no error messages with nohup and python?

I run a python script on a linux server with nohup like that: nohup python3 ./myscript.py > ./mylog.log & It works and the script writes the log file but the problem is that python error ...
1
vote
3answers
43 views

System.UnauthorizedAccessException (A first chance exception)

I am getting the A first chance exception of type 'System.UnauthorizedAccessException' occurred in mscorlib.dll exception from this bit of code: string[] filesList = ...
0
votes
0answers
22 views

Class Not Found Exception when Running YouTube API Demos for Android

Lately I am not able to run any if the YouTube API Demos for Android. I get a ClassNotFoundException when instanciating the first activity that has some dependency to the YouTube API class. This ...
-5
votes
4answers
76 views

How to add try/catch in Objective-C? [closed]

I'm new in iOS. I worked on c#. How can I handle exceptions in iOS? Is it possible to use construct try { //Code } catch { //Exception } finally { //You shall pass! } Please help
0
votes
0answers
12 views

gant throw exception when put depends(parseArguments, war) inside the target

my gant script is: grailsHome = ant.project.properties."environment.GRAILS_HOME" tomcatHome = ant.project.properties."environment.TOMCAT_HOME" includeTargets << grailsScript("War") ...
0
votes
0answers
12 views

Google App Engine Spring Session Attribute

I have two session attributes within a Spring controller: @SessionAttributes( {"mA", "allStaffAvailable"}) When accessing the controller that uses these, unlike when the app was first developed ...
0
votes
0answers
24 views

OSGi JBoss cache package import

Good day! I' trying to use JBoss Cache within an OSGi application (Apache Felix). I'm importing the org.jboss.cache and org.jboss.cache.config packages,compilation is fine, but whenever I deploy it I ...
0
votes
1answer
12 views

Not an managed type for Spring Data Mongodb

I have the following mongo configuration: <context:component-scan base-package="com.example" /> <mongo:repositories base-package="com.example.repositories.mongodb" /> I have the ...
5
votes
5answers
104 views

Specify an exception or not?

i have a little performance question, when working with a try catch clause, it's better to specify the exact exception you can get or just using exception it's better? Example: try { whatever } ...
0
votes
2answers
36 views

Silent exceptions in Task.Factory.StartNew when using a long running background consumer task?

This notifies of an unhandled exception: new Thread(_ => { throw new Exception(); }).Start(); This does not (at least until you wait/retrieve the result): Task.Factory.StartNew(() => ...
2
votes
2answers
36 views

MySQL server has gone away - ErrorException

I started getting this error when trying to query the database on a connection that had timed out. Fatal error: Uncaught exception 'ErrorException' with message 'mysql_query(): MySQL server has gone ...
1
vote
2answers
53 views

how to get the key information from a KeyError

Is there a way to get the key that raised a KeyError? or in general, where can I find (if available) properties of an Exception?
1
vote
2answers
40 views

java.lang.OutOfMemoryError: Java heap space in the web application

I have an web application that continuously sends 3 ajax requests every second. These ajax request are made to 3 different servlets. To begin with my application runs fine but after some time it ...
0
votes
0answers
16 views

Magento Theme Exception not working

Guys i am having difficulty in having design exception in Magneto. I have write design exception which works on product page but on home page it don't work. What i really want is to open mobile theme ...
-1
votes
0answers
44 views

Do we handle exception in use case scenario - Functional Requirement Specification

Let suppose, I am trying to write a scenario for the use case called "logout". Actually I am confused about exception handling in the use case scenario. My question is do we write sequence to handle ...
0
votes
3answers
52 views

How to make FileOutputStream.close() to throw exception myself?

In Java, FileOutputStream.close() may throw an IOException. But I never see it happens. How can I produce such an exception? I need to produce this. Thank you.
0
votes
1answer
45 views
+50

HttpUrlConnection not working and shows different status code for GET and POST call

I am getting FileNotFoundException when making GET call to REST API. Here HTTP status code I get is 403. For POST call I get IOException : No authentication challenges found, whereas I pass ...
0
votes
1answer
41 views

BigInteger throws null pointer exception

I'm having trouble getting a BigInteger to add another BigInteger to it. Any suggestions The relevant code: Declared in class: private BigInteger mTotientSum; Done in constructor: BigInteger ...
0
votes
2answers
20 views

Rescuing bash/system STDERR in Ruby

I'm shelling out of my Ruby script to call a system command as follows puts "Reached point #1" begin system("sh my_shell_script.sh") rescue StandardError => e puts "There was an error" end ...
0
votes
3answers
80 views

Is there a general Exception-class that takes an int besides the message?

I need an Exception class that takes both a message and an int as parameters, and would rather use an existing one instead of creating my own custom derived Exception. I've been searching for one, ...
1
vote
0answers
30 views

Debugging production uglified javascript

I am trying to create a javascript error reporting system. The aim of the system is to collect info when an exception occurs and notify our servers. The problem is that in production the code is ...
1
vote
0answers
35 views

Unexpected windows phone application exit without any exception

I have a windows pone application working quite well except when it comes back from Tombstonning, then quite randomly it silently exits after executing the same command some times. I have set VS2012 ...
0
votes
1answer
29 views

Uncaught Error: NotFoundError: DOM Exception 8 Chrome Extension

iam trying to build an chrome extension that do actions on site, the site have his API , for example if you click on edit link in site, in backgroung its send an API command like this ...

1 2 3 4 5 277