Exception handling is a programming language construct or computer hardware mechanism designed to handle the occurrence of exceptions, special conditions that change the normal flow of program execution.
0
votes
0answers
6 views
Launch a pdf file from java
I am trying to open a pdf file from the following code.
try {
String currentDir = System.getProperty("user.dir");
currentDir = currentDir+"/Report.pdf";
...
0
votes
0answers
13 views
Logging traceback for imported module that imports a module
Apologies if the title is most unpythonic. I'm sure there's a proper term (I'd imagine something like 'Traceback passing' etc).
I've tried searched here in stackoverflow.com for the solution I'm ...
1
vote
1answer
24 views
Where is the proper place to attach for catching ALL ASP.NET MVC errors?
I'm adding error handling for our asp.net mvc 3 application. Basically I want to catch every unhandled error short of a nuclear meltdown.
I've identified the following spots for doing 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
2
votes
1answer
58 views
Can I evaluate a block against a Binding object in Ruby?
I'm trying to pass the context in which an exception was raised to an Exception subclass, in order to use this context to generate an informative error message. I recognize that I could pass ...
4
votes
3answers
117 views
Exception Handling guideline- Python vs Java
I am original Java developer, for me, checked Exception in Java is obviously/easy enough for me to decide to catch or throw it to the caller to handle later. Then it comes Python, there is no checked ...
0
votes
3answers
47 views
Is it possible/a good idea to dispose of a thread in its catch and re instantiate itself in the finally block?
Background: I have multithreaded application that has one main UI thread and two threads that are super loops that run for the duration of the program. The worker threads basically read in some ...
-1
votes
0answers
52 views
How to catch an intrinsic exception?
I'm trying to emulate SSE instructions with intrinsics and I would like to catch the exceptions that are being thrown while emulation. When I mask all exceptions and check the control register by ...
0
votes
2answers
42 views
How To Use Exception Manager Enterprise Library 6.0
When using Enterprise Library 6.0, this error occurs in the code below:
bool rethrow = ExceptionPolicy.HandleException(ex, "ReplacePolicy1")
"Must set an ExceptionManager in the ExceptionPolicy ...
4
votes
2answers
54 views
Multiple exception handlers for file processing
I guess my brain is going soggy. Can somebody explain to be the best way to achieve the following task?
I want to open a file, do some stuff with it, and then close it. I want to ensure that in all ...
0
votes
0answers
90 views
Why am I still getting an exception even it should be handled?
Coding:
try
StrToInt(inputNumVariables.Text);
except
ShowMessage('Sólo números, por favor');
end;
Being inputNumVariables a TEdit why would it raise and exception if I type in anything different ...
2
votes
1answer
16 views
Can you throw an exception from a Raw AspectJ Before advice
I'm writing a non-spring aop aspect using aspectJ and I'm writing a before advice for it.
In my before advice, let's say I want to open a file. So I execute it as such:
public before(): ...
8
votes
1answer
83 views
Pass error reason in thrown object / How to handle errors in modern JavaScript [closed]
I am developing a small Node.js package which contains a parser. It throws as soon as it detects a non-recoverable problem.
I have used Java for quite some years and I am used to a mass of ...
1
vote
2answers
28 views
Chaining Parallel Tasks to an End Condition or Error Condition
I'm trying to wrap my head around some of the syntax and structure for parallel tasks in C#, specifically around chaining multiple tasks and handling errors.
The specific sequence of steps I'm ...
0
votes
2answers
22 views
Load-time exception handling in AngularJS
I need to execute a function which is defined in controller in load-time, in order to gain json data from another place right after page is loaded.
I've tried to call the func immediately within ...
1
vote
0answers
34 views
An asynchronous operation cannot be started at this time Exception occurs on calling webservice in mvc?
In my ASP.NET MVC 3 project I'm calling a web service for login authentication. But it throws an exception:
Exception Details:
An asynchronous operation cannot be started at this time. ...
5
votes
1answer
49 views
Cleanest way to execute code outside of try block only if no exception is thrown
This question is about the best way to execute code outside of try block only if no exception is thrown.
try {
//experiment
//can't put code after experiment because I don't want a possible ...
1
vote
3answers
45 views
C++ Exceptional handling query
Can some one please explain how sequence of exceptional handling is taking place in below code? How did it evaluate to
"~B() called Handler of function try block of D()Exception in D"
#include ...
-1
votes
2answers
68 views
Why return null after catching an Exception? [closed]
I've encountered some code which is catching RestClientException and then returning null. I think this is bad practice ? Why would a developer (who has since moved on) do this ? The method in which ...
1
vote
1answer
43 views
Why can't I use midge to mock a function that throws using slingshot's throw+
Here's the situation: I'm trying to unit test function A that calls function B. Function B is called in a slingshot try+ block and under certain circumstances it can throw using a slingshot throw+. I ...
0
votes
4answers
46 views
removing last element in arraylist exception [closed]
at first I was having issues removing an element in an arraylist if it was the only one on the list, which i over came by simply setting all the varibles of the element to null/0 if it is the only ...
1
vote
2answers
39 views
Do method-scoped objects get destroyed when the method throws an exception?
void MyClass::method()
{
SomeObject a;
methodThatCanThrowException();
}
I wish to catch exceptions higher up the call-stack, not in method() - but in this example will the SomeObject destructor be ...
6
votes
2answers
72 views
Java Exception Classes
I am new to java and I was looking at exception handling. When we catch java exceptions, we declare and use an Object of the Exception class without initializing it i.e., catch(NullPointerException e) ...
0
votes
2answers
34 views
PHP - sensible/elegant/graceful error handling for a production environment
I'm writing a PHP web application which will be running under a production environment in the not too distant future, and rather than use the non-user-friendly die(), I thought I'd come up with a ...
0
votes
1answer
39 views
Find Exception type
If I have the following code:
try {
//some offensive code
} catch (Exception e) {
String type = //get type of e
Assert.fail(type + " thrown.");
}
Is there a way I can get the type ...
0
votes
0answers
5 views
Handled exception in Observable.Start freezes UI
I have a situation that I'm beating my head against the wall, and have not been successful in getting any help from Google.
I'm working on some legacy code that has an IObservable created with
obs ...
2
votes
5answers
91 views
FileNotFoundException in java
Im developing a simple android application which needs a text file access! Im getting filenotfoundexception eventhough i specified the absolute path of the file in File constructor.. My code is
`File ...
0
votes
2answers
77 views
File being used by another process even if closed it before
I don't understand why the same code runs successfully on a 32-bit system, but trying to run it on a 64-bit system, always gives an error:
File being used by another process
I declare a file ...
2
votes
3answers
44 views
Which exception to throw for invalid input which is valid from client perspective
I am writing code to find and intersection of 2 lines.
When slopes of the lines are equal they dont intersect. But on the other hand an input with slopes of equal value is completely valid.
public ...
0
votes
1answer
21 views
Wrapping thrown errors so they don't crash the node webserver (node-mongodb-native)
Simplified code... but the basic scenario is I'm doing a findOne query with Mongo to lookup a user, but if the user doesn't exist it throws an error that crashes the entire webserver. Can someone ...
0
votes
1answer
61 views
Exception thrown while iterating in scala
I have an actor based system in which I am reading an external file sitting in an S3 bucket and moving taking each of the file lines and sending it over to another actor that processes that particular ...
2
votes
1answer
62 views
Handling Data Access Layer Exception in MVVM using Inversion on Control
I'm studding MVVM in C#.
I want to use Inversion of Control (IoC). I use the framework Unity.
I don't understand how to handling exception that could be raised from Data Access Layer.
Here a little ...
0
votes
1answer
36 views
Using Anonymous thread for catching Exceptions
I asked around regarding catching checked exceptions in the context of a thread; the accepted answer was to use Callables and Futures.
But I realized that I can simply wrap the "working" method with ...
0
votes
2answers
48 views
C++: accessing an array of unknown size by using try/catch
I was using Java for quite a time and had to move back to C++. I didn't use try/catch in C++ so much before, and now when I work again, I encountered probably a very silly problem.
I have an array of ...
7
votes
5answers
136 views
“Uncatching” an exception in python
How should I "rethrow" an exception, that is, suppose:
I try something in my code, and unfortunately it fails.
I try some "clever" workaround, which happens to also fail this time
If I throw the ...
-2
votes
1answer
85 views
Try/Catch statement not working [closed]
I am having some trouble with this particular try/catch block. It should work, but every time I enter a letter, I still get a NumberFormatException. Can anyone identify the problem with this code? ...
1
vote
3answers
37 views
How to avoid 'Unassigned Local Variable' defined inside a try-catch block
This is one error that I regularly face. Although I manage to circumvent it using some way or another, it really annoys me.
In the code snippet below, I want to safe guard against exceptions from ...
0
votes
3answers
53 views
having trouoble executing a “cmd” or batch file from c#
i need to run a batch file (or a cmd) from c# . my code is this simple:
Process.Start(@"C:\b.bat");
Process.Start(@"cmd.exe");
i have also tried Executing Batch File in C# , and many other sites ...
7
votes
3answers
199 views
Is there a Jeff Atwood's User Friendly Exception Handling (Or Similiar) for C# / Winforms .Net 3.5+?
We have a .Net 3.5 C# / Winforms desktop application with a very limited size/scope/userbase (40 users). I need a way to gather more information about unhandled exceptions, but I don't believe I need ...
0
votes
1answer
21 views
Re-raising exceptions in Python 2.x with added context information
C# background
I come from a C# context where you can catch an exception and throw a new one including the original one as an inner exception. This way you can have something like this:
void ...
0
votes
1answer
66 views
Exception causing Log.e() to be skipped
I have the following code that I'm trying to debug:
public Cursor getUpdateTimestamps() {
Cursor timestamps;
try {
// int j = 3 / 0; // This will throw a divide-by-zero exception
...
0
votes
1answer
20 views
How to read Google.GData.Client.GDataRequestException
I am writing a youtube upload software. Actually my question is generic here.
The Google.GData.Client produces an exception. But I don't know how to reach in order to write ?
I mean how do I access ...
0
votes
0answers
32 views
Thrown exception is always null
I'm writing a function that must throw an exception. My problem is that when caught, the exception is always null.
Here is a simple version of my code. The e.printStackTrace() call will throw a ...
2
votes
1answer
32 views
Localization for exceptions in Android
I am developing application for multi-languages. The static strings in my application like "Are you want to quit?" have been replaced with the key values in strings.xml file from android application's ...
-10
votes
2answers
61 views
How to use catch, throw, throws? what is diff between throw and throws? also catch and throw? [closed]
How to use catch, throw, throws? what is diff between throw and throws? also catch and throw? A simple example would be better.
1
vote
3answers
27 views
Change catch (COMException ce) to catch (COMException)
I have the following code:
try
{
retval = axNTLXRemote.IsUnitPresent(_servers[0].IPAddress, 1, _servers[0].RemotePort, _servers[0].CommFailDelay * 1000);
}
...
0
votes
2answers
85 views
How to get the method name from which the exception is thrown? [closed]
I need to get the class name and the method name from which the exception is thrown. How can I do that? Thanks in advance.
My code:
private void setErrorDetails(final Throwable cause) {
for ...
0
votes
0answers
27 views
symfony2 throwing exception from onKernelRequest returns blank page
I have an event listener hooked to kernel.request event. In the onKernel request method i am making some validations based on the subdomain.
If this validations fail I want to throw some exception ...
0
votes
2answers
29 views
Callable: why can we “change” the exception on implementation? [duplicate]
This code compiles without an error:
private FutureTask<MessageSource> loadingTask(final Locale locale)
{
return new FutureTask<MessageSource>(new Callable<MessageSource>()
...
0
votes
1answer
28 views
Localization of Exception Message inside class files?
If a class file contains some initial validation and throws an Exception in the case where validation fails,
is it considered good practice to enable localization inside the class files for the ...





