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
votes
0answers
35 views

Using grep to get the full stacktrace of exception

How can I grep all the exceptions in jboss server.log (log4j) file and include the entire stacktrace in the output?
0
votes
3answers
28 views

Java disable stack trace on a specific call?

I want to disable one error message produces by a socket timeout, because it's filling my console (Linux, terminal). The code: public ThreadListenResponseQuery(DatagramSocket socket){ this.socket ...
-3
votes
1answer
92 views

NullPointerException error in a for loop

I have this method and every time i try to put value in my foo array i get NullPointerException. I tried to solve it but i dont know why it tells me NullPointerException. Thank for helping :) mine = ...
0
votes
3answers
34 views

Break from try/catch block

Is this possible in PHP? try{ $obj = new Clas(); if($obj->foo){ // how to exit from this try block? } // do other stuff here }catch(Exception $e){ ] I know I can put the other ...
0
votes
0answers
24 views

boost::serialization throws input stream error

This appears nearly unrecoverable. I have tried every code change I encountered to correct an input stream error thrown when deserializing a boost::shared_ptr. This error occurs after several ...
-1
votes
0answers
25 views

in a multithreaded application is it possible for a COMException to return the wrong exception message?

I'm puzzled by a COM Exception that returns information that appears to be irrelevant to the actual problem I'm experiencing. To be more specific, instead of the expected ...
1
vote
4answers
36 views

Unable to instantiate templated class inside another class

I have two classes: one templated, one not. I am trying to create an instance of the templated class inside the non-templated class and the program won't compile. I'm using Visual Studio 2012 and I ...
0
votes
3answers
40 views

Passing an object with an Exception?

What is the correct way to pass an object with a custom exception? I'm pretty sure this code used to work, but now it is throwing an error. class FailedPostException(Exception): pass def ...
0
votes
0answers
47 views

ClientProtocolException Android

So I am trying to browse to a localhost webpage with my android device. When I put the following url in my Android browser it works: http://192.168.x.x/timecode But when I try to access via ...
0
votes
2answers
39 views

Getting a NoSuchElementsException in Java?

Ok, so for my java class's final project we're supposed to implement a simplified version of craps that runs for 10 rounds. Whenever I run this, I get the NoSuchElementsException for the line "int ...
0
votes
0answers
54 views

EXCEPTION :Async operation timed out - When reading input stream in servlet

I got the exception EXCEPTION :Async operation timed out when reading input stream in servlet. Code for read input stream is : ServletInputStream rdata = request.getInputStream(); ...
0
votes
0answers
87 views

Java exception when spring loading context configuration file - occurs in UNIX but not Windows

I've been stuck with this one for a while now. I have created a mini subset of the project where this occurs and reproduced the issue. Basically I'm running a test which loads a spring context file ...
0
votes
0answers
39 views

Connection leak npgsql, does they fix it?

I am C# developer, working with Postgresql through Npgsql with NHibernate 3.*.*. And i have got connection leaks through when using "Robots"(realized with server cache callbacks) in my ASP.NET MVC 4 ...
0
votes
1answer
66 views

Screen Capture program in VB.NET

I had created an application that captures the screenshot of desktop screen. It works very well with button I have used in form. But now I want to make that thing works automatically using timers but ...
0
votes
1answer
32 views

MongoDB JMX registration exception: Class does not expose a management interface

Recently i've been having an issue on application startup, using MongoDB 2.10.1, with my JavaEE application running on Jboss 4.2.3GA. AM com.mongodb.DBPortPool$Holder get WARNING: JMX registration ...
0
votes
1answer
54 views

Opening document error noAccessSignal

I'm opening a document on xPageA then from there, (pushing a button) I open the same document in xPageB to do some stuff on it. Sometimes on some documents, opening xpageB from xPageA results in ...
0
votes
1answer
41 views

windows phone 7 how to get isolatedStorageFileStream.name (exception is thrown…)

Hello I want to get the path from a file in the isolatedStora using (IsolatedStorageFile isoStore = IsolatedStorageFile.GetUserStoreForApplication()) { using (IsolatedStorageFileStream ...
0
votes
1answer
52 views

RestEasy - Unable to find MessageBodyReader?

I've written a simple RestEasy client proxy to perform an iTunes search. It looks like this: @Path("/") public interface AppleAppStoreLookupClient { /** * Attempts to lookup an apple app ...
0
votes
0answers
41 views

Python: Best practice for raising and/or inspecting exceptions

I have a setup in my Python code resembling this: def a(): raise MyUserDefinedException() def b(): a() def c(): a() def d(): b() c() def main(): try: d() ...
0
votes
1answer
99 views

httphostconnectexception connection refused

I know there are lots of questions about this matter but I just could not find an answer to this one in specific. I am trying to access HttpClient client = new DefaultHttpClient(); ...
2
votes
2answers
50 views

Using exception to control code flow

afaik using exceptions to handle code flow is wrong. I'm working in a code that has a method named getEntity(id) and getEntity throws a DoesNotExist exception when entity is not found. There is no ...
2
votes
3answers
78 views

why i can overwrite some methods that throws exceptions y others i cant? [duplicate]

I'm preparing myself for a test, and I found this code that I don't understand. If I override a method just like this, it can't compile. Ok, fair enough. I have to throw a parent exception in line 2, ...
1
vote
1answer
115 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 ...
0
votes
1answer
38 views

How to suppress Disable add-in dialog when Excel is force close

My addin is written in c#, NetOffice, ExcelDNA using WPFframework. Some part uses winforms, too. The main UI is WPF When there is a modal dialog displayed, users force close Excel. Next time when ...
0
votes
0answers
14 views

Service temporarily unavailable - PHP SDK

When ever I try to get a large data set say, I am writing an FQL something like select ...
0
votes
1answer
42 views

SSH timeout exception error

I am currently having an issue with time out when connecting to a remote server to collect firmware files using an in-house client that is referencing Sharp SSH. The timeout is network based, but I ...
0
votes
0answers
33 views

java.io.EOFException When trying to read a serialized object

I have a serialized a data object into a file and tried to read that object back inside a servelet.Im getting below exception java.io.EOFException at ...
1
vote
0answers
35 views

Passing XML data as a string parameter in the request ServiceStack

I’m using ServiceStack and every time I’m trying to pass XML string as a string parameter or “< “ symbol for the POST request I’m getting an exception: SerializationException - Could not ...
0
votes
1answer
54 views

SEHException not caught by Try/Catch

In a background thread, my application regularly examines a network folder (UNC Path) for application updates. It reads out the assembly version of the file, like so: Try newVers = ...
1
vote
1answer
37 views

java.lang.IllegalAccessError in Selenium

I got this code from BitMotif - Selenium Remote Control For Java — A Tutorial package Practice; import com.thoughtworks.selenium.Selenium; import com.thoughtworks.selenium.DefaultSelenium; import ...
0
votes
1answer
27 views

Need ruby error message as instance variable

I have a custom error class like this: class EntityCrudError < StandardError attr_reader :action attr_reader :modelName attr_reader :entity attr_reader :errors def ...
0
votes
2answers
42 views

Win32Exception caught by Application.ThreadException - missing own code

I am getting an unhandled exception somewhere in the Ribbon of the UltraToolbarsManager (Infragistics). But that is not the relevant part I want to ask here. The question I have is: why don't I see ...
3
votes
2answers
119 views

How to override default Spring JPA exception translator behavior?

I don't know if this approach is the best or not. But I have a requirement where I need to handle Spring JPA repository (DAO layer) exception. Handle in the sense may be propogate it to UI or may be ...
0
votes
0answers
21 views

How to ignore logging of particular exception using log4j?

I am developing an application in which I am using log4j. In that am getting an exception com.opensymphony.xwork2.interceptor.ParametersInterceptor. But i don't want this particular exception to be ...
-1
votes
2answers
61 views

@Catch is giving “unexpected @” error in Xcode 4.6.2

Xcode is giving me an error unexpected @ in program in my .m file. Here's an example (with errors in comments) @catch (NSException *excepton) { // unexpected '@' in program ...
0
votes
1answer
67 views

c++ free memory allocation in constructor when facing exception

I found some interesting behavior in the case of exception when construct an object: class bookentry { public: bookentry(){ t1.reset(new test1); //0 test1 *t11 = new test1; ...
0
votes
0answers
107 views

android: Caused by: java.lang.InstantiationException: can't instantiate class .DatePickerActivity$DatePickerFragment; no empty constructor

my code @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.date_picker); count = 0; dialog = new DatePickerFragment(); inIt(); ...
1
vote
3answers
36 views

C#, MAF, Unhandled Exception Management in separate AppDomain

Okay, so I have a MAF application which loads up each addin inside of a separate appdomain. This is working fantastic for what I need as it allows me to dynamically unload and reload my addins at ...
0
votes
1answer
47 views

Git exception when not using git

I get this error whenever I open an external folder from inside my running Java program: fatal: Not a git repository (or any of the parent directories): .git As far as I can tell, everything is ...
0
votes
1answer
43 views

JPA: exception obtaining an entity that references another

I am writing a simple application using Spring and JPA. I have 2 entities: User and Role, with a relation of N..1. Whenever I try to get any of this entities from the database, I get an exception ...
0
votes
1answer
64 views

“Can't overwrite cause” when setting a cause on exception with a null cause

I have a RuntimeException that has no cause (t.getCause() returns null). When my code runs t.initCause(exceptionToAttach), it gives me an IllegalStateException with the message "Can't overwrite ...
0
votes
3answers
91 views

Java multi catch exceptions errors

I've checked this code several times and I cannot figure out why it's spitting back errors in regards to the catch statement. I'm aware that handling multiple exception with one catch clause is ...
0
votes
1answer
49 views

std::out_of_range at memory location 0x0043f7c4.. error when using vectors and an input file

What i am trying to do is get user to enter a key code and if it matches to display the information on the data input file. I am getting this error which i have no idea what for. std::out_of_range ...
0
votes
1answer
20 views

Rails Exceptions - Add ENV to Exception Text

I'm using exceptional.io to get emails for all the exceptions occuring in my rails app, however I was hoping to rewrite all the Exception Texts so that the subject of the email shows the ENV that the ...
0
votes
0answers
24 views

Json : Exception while serializing class having more than one this[] operator

my Json background is one day old. As a starting point I took http://code.msdn.microsoft.com/Supporting-different-data-b0351c9a That I changed a bit to learn. While serializing the single ...
-2
votes
2answers
42 views

How to handle the EXCEPT message?

I am working with Python. In my program I am using "try:" and "except:". Inside the "except" I want to send an email telling that some error has occurred and the action could not be executed, but I ...
0
votes
0answers
29 views

RichFaces JSF RenderKitFactory Issue

I have written a JSF project. When I deploy it using Tomcat 6.0.29 in my local environment (Windows) it doesn't show any exceptions. But when I try to deploy it on a remote server (Linux) it throws a ...
0
votes
2answers
88 views

How to rollback Spring Transaction when an Exception is thrown

I am using spring 3.0.5 and hibernate 3.6. In my project there is a scenario where i have to rollback transaction of any exception in thrown or error occurs. This the sample code, Everything works ...
0
votes
0answers
52 views

OpenCV: Causing unhandled exception when extract ORB feature

I'm new on openCV. I'm working on feature matching. Currently, I would like to extract ORB feature using openCV. I searched example and guide line how to use ORB feature on openCV. I tried a very ...
-3
votes
2answers
183 views

Out of memory exception in for loop C#

(Down vote if question is not clear, not because you think code is inefficient. if I had efficient code, I would be answering questions, not asking. And explain your down votes, not just a random ...

1 3 4 5 6 7 269