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.
5
votes
2answers
27 views
What changes, if any, are required to make the following Perl eval bullet proof?
eval {
# here is put some code that may throw exception
1; # Why is the "1;" here ?
} or do {
my $error = $@;
# Handle error.
};
Does the following style protect against $@ not being ...
0
votes
1answer
21 views
Java spring exception handling when the compiler says it needs to wrapped in a try catch
Im using Spring to handle my exceptions in the controller class with @ExceptionHandler
I have a transport class (similar to a DAO) with the following
HttpResponse httpResponse = ...
2
votes
1answer
25 views
How does debuggers/exceptions work on a compiled program?
A debugger makes perfect sense when you're talking about an interpreted program because instructions always pass through the interpreter for verification before execution. But how does a debugger for ...
2
votes
0answers
38 views
C++ exception support in linux kernel module
In 2005 Dr Dobb's magazine published an article about patch for linux kernel. The patch pretended to allow Itanium C++ ABI in kernel space. The patch was not accepted.
The code disappeared from the ...
0
votes
0answers
16 views
AVAudioPlayer Exceptions
My app has been crushing once in every long while. In Xcode, the lldb and gdb debuggers don't give me any information about the exception when it happens. And the exception is virtually impossible to ...
0
votes
3answers
31 views
How to Handle Nil Errors in Rails?
What is the correct way to deal with nil errors in Rails? I often get errors like:
NoMethodError (undefined method `questions' for nil:NilClass):
For example, let's say I have chapters in my ...
1
vote
2answers
23 views
Why is NHibernate swallowing a SQL error from a lazy-loaded collection?
I've got an entity that maps a collection of components as follows:
<class name="TeacherResource" table="TeacherResource">
<id name="TeacherResourceId">
<generator ...
0
votes
2answers
23 views
Uncaught Exception Handling in JSF
I am trying to create a filter to handle exceptions (see Handling Uncaught Exception in JSF)
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws ...
1
vote
1answer
26 views
Custom Exception class doesn't work
Why classes that inerithes from System.Exception don't work in try catch block?
The following snipped doesn't fire catch block
try
{
int a = 3;
int b = 0;
int c = a/b;
}
catch (CustomEx ...
0
votes
0answers
24 views
Getting genereic [object Object] exception when I should get an ORA-error
I've this function call:
try{
foo("func", "params")
}
catch (e){
throw e;
}
func is only a ora:plsql query. This first block generates an ORA-exception message.
CODE1:
DECLARE
part_no_ ...
0
votes
0answers
39 views
Handling try catch
My project is service oriented and everything comes from services.I m loading the data in UILabel's,tableviews etc.When particular text doesn't come from service then I dont want to show null there ...
0
votes
1answer
31 views
Prevent code from throwing XML exception
In the following piece of code :
try{
....
}
catch(Exception e)
{
logger.error("Exception caught in method: \n");
logger.error(e.getMessage());
String ...
1
vote
0answers
24 views
Trap message/exception in jquery to ELMAH
In my MVC3 application, I am returning messages from my stored procs. If it is 'successful', I'm moving forward else displaying a custom error page.
When the message is something else, I want to trap ...
0
votes
1answer
35 views
Laravel 3 - POST Content-Length Exception
Running Laravel 3.
I am trying to upload files with the laravel framework. If the file is larger than the php setting for upload_max_filesize it throws the exception below.
I have tried this in my ...
0
votes
4answers
76 views
how to manage exceptions
I need to extract some data from an external database.
I don't have access to all data, that's why I need to handle the access exception to not block the execution of my application.
This is the ...
2
votes
1answer
81 views
Async Exception Handling in F#
I am trying to write non-blocking code in F#. I need to download a webpage, but sometime that webpage doesn't exist and an exception is thrown (404 Not Found) by AsyncDownloadString. I tried the code ...
0
votes
1answer
26 views
How to catch exceptions which occur inside asynchronous methods? (Windows Store app, PPL)
I am trying to catch exception from OnlineIdAuthenticator::AuthenticateUserAsync method, which occurs when there is no internet connection for example.
I've found some info about this topic, but it ...
0
votes
1answer
23 views
Send an Exception variable to a function and return the exception details
I am working on android library where I need to pass an exception object to a function. The function should cope with all Exception types and be able to return all of the available data within the ...
1
vote
1answer
35 views
Error catching and File IO
I have an assignment where I need to write a while loop code block that contains a trycatch statement. The try block retrieves each line from an input file, and invokes an isValid method I created to ...
-3
votes
2answers
53 views
Catching exception from out of index
I have some main file which i can not edit. There are some things to be done and i am writing classes suitable to main file. v1 object is an instance of my own vector class.
At some point of main i ...
1
vote
2answers
51 views
What is the rationale behind the (probably undocumented) cases of .NET suppressing exceptions?
I am trying to grasp the the .NET criterion where, when .NET exceptions are suppressed, swallowed or passed unnoticed in order to detect/suspect/prevent/be on alert about such incidents.
The MSDN ...
1
vote
3answers
45 views
Java Nested Exception Handling
I came across a code base that read a text file and analyzes it. I am bit confused with the way the exceptions are used. A separate class AppFileReaderException that extends exceptions has been ...
0
votes
2answers
58 views
How to handle exception after call commit() or flush()
Is there a "best-practice"-way of handling PersistenceExceptions after a commit() or flush() ?
The way I understand it, after a PersistenceException, the transaction is going to be rolled back in any ...
2
votes
3answers
57 views
How would you except this undefined method
I would like to check if the element exists and one of the methods is not blank?
Please have a look at the following code:
var description;
var desc = ...
1
vote
1answer
19 views
Bubbling errors from c++/clr to c#/.net
I have the following code begin ran in a native/win32 c++ library.
// Load lt dll
OutputDebugString(L"LoadLtDll");
m_LTDll = LoadLtDll("C:/Program Files/Enciris Technologies/LT101 Driver ...
3
votes
1answer
53 views
Getting a Task's unexpected Exception to bring down the application earlier than Garbage Collection
Typically, for code that I don't expect to throw exceptions but does (i.e. a programming error), I want my application to crash (so that it doesn't corrupt data, report invalid data to the user, ...
-1
votes
1answer
47 views
How to get all exceptions from all nested tasks of async/awaited parent?
Re-using slightly modified code from this answer, how to modify it in order to implement @svick's advice:
But if you save the Task into a variable and call
task.Exception.Flatten(), that will ...
0
votes
0answers
8 views
Detect php SQLite3 “not an error” exceptions
I'm using the SQLite3 libraries for unit testing a DB migration management tool.
I seem to have discovered a flakey scenario though. The SQLite3::query() function is throwing an exception in the ...
5
votes
2answers
69 views
Why my exception is not making any difference in a wpf application?
I have a WPF application that has a BackgroundWorker. I throw an exception in this BGW but it is not shown any where!, just the background worker fires its WorkerFinished event.
Where is it going?
1
vote
2answers
49 views
Python exception handling in list comprehension
I have a Python function called plot_pdf(f) that might throw an error. I use a list comprehension to iterate over a list of files on this function:
[plot_pdf(f) for f in file_list]
I want to use ...
0
votes
0answers
25 views
Deciding on how to split up different types of Exceptions [closed]
I have a Database interface with these methods:
createTable
tableExists
dropTable
insert
update
select
delete
getInsertId
A lot of those can fail. In my first implementation I'm basically just ...
0
votes
0answers
27 views
onCompletion being triggred, not onException
This is a varition of the question, I asked in Camel's CXF component not catching onException(Exception.class)
I have implemented the solution which Claus suggested in the above but its not ...
2
votes
4answers
47 views
ApplicationException or create custom exceptions?
In my file repository, I will throw the following exceptions when the InsertFile() method is called:
When the upload file size limit is exceeded
When the storage capacity is exceeded
At the moment ...
0
votes
2answers
51 views
Ruby: Rescuing the same error type twice
Is it possible to rescue the same error type more than once in ruby? I am needing to while using the Koala facebook API library like so:
begin
# Try with user provided app token
fb = ...
0
votes
1answer
20 views
Handle System.AccessViolationException on WinRT (windows store)
How to handle System.AccessViolationException on WinRT app using C#
I see http://dotnetslackers.com/articles/net/All-about-Corrupted-State-Exceptions-in-NET4.aspx but does not apply on windows store ...
1
vote
4answers
51 views
How to fix this typical exception unsafe code?
According to GOTW #56, there is a potential classic memory leak and exception safety issues in the following code:
// In some header file:
void f( T1*, T2* );
// In some implementation file:
f( new ...
0
votes
0answers
18 views
Twisted web, SQLAlchemy and exception handling
I'm using twisted web to build a web service application.
I use SQLAlchemy to interact with the database.
As far as I know it would make to sense to create a session a the beginning of a request, and ...
0
votes
4answers
48 views
Why is `exception` not visible anywhere?
I have a peace of code that is poorly written, like so:
HashMap<String, TceFile> mapPresetLastKdf = new HashMap<String, TceFile>( (HashMap<String, TceFile>) RsessionVars.get( ...
1
vote
1answer
17 views
Returning an error without throwing an exception with servicestack
From what I know, exception throwing can be a little heavy. I can see that ServiceStack's Error handling suggests throwing an exception, which gets beautifully serialized to the client side.
1. How ...
0
votes
1answer
19 views
Application_Error() is being called twice when any error occurs(unhanded Exception occurs)
I my C#.net mvc application Application_Error() is being called twice whenever any error occurs.
code of Application_Error() is:
protected void Application_Error(object sender, EventArgs e)
...
1
vote
2answers
69 views
What are your options when an exception occurs at Application.Run()?
I'm using a great library called GreatMaps.NET for doing some mapping in my application. I really love the library (and highly recommend it), but I occasionally get an unhandled ...
3
votes
4answers
89 views
Signaling or catching 'nan' as they occur in computations in numerical code base in c++
We have numerical code written in C++. Rarely but under certain specific inputs, some of the computations result in an 'nan' value.
Is there a standard or recommended method by which we can ...
1
vote
2answers
53 views
How do I handle thows/exceptions in a container class safely?
I am currently working on a container class that uses allocators to manage the resources.I'll try to give a short version of what I currently do to resize the container. (The real one is not ...
0
votes
1answer
27 views
Is there a way to run exception code in mysql
say that i run a query that copies 100 records that was marked to be copied (out of 200) into a temp table then copy thew contents of that temp table into another table, now during this query, one of ...
-2
votes
0answers
38 views
Getting the System.Data.OleDb.OleDbException error message but cant get rid of it
private void btninsert_Click(object sender, EventArgs e)
{
OleDbCommand command = new OleDbCommand(); //new instance of Oledb command object
con.Open(); //open database connection
...
2
votes
2answers
75 views
How to better understand the code/statements from “Async - Handling multiple Exceptions” article?
Running the following C# console app
class Program
{ static void Main(string[] args)
{ Tst();
Console.ReadLine();
}
async static Task Tst()
{
try
{
...
0
votes
2answers
29 views
Dealing with Exceptions and Errors where errors are OK
I have a JSON string into which I'm adding multiple variables. The problem here is that sometimes not all the data will have something entered, and therefore return a NullPointerException.
For ...
0
votes
0answers
20 views
Rescue all errors of a specific type inside a module
I have a module in which I am performing all of my encryption/decryption tasks for a project. I would like to catch any OpenSSL::Cipher::CipherError exceptions that occur in this module so that I can ...
3
votes
2answers
44 views
Why does Timer callback stop being invoked when an Exception is caught?
I am working on a Windows Service that essentially runs the following code:
public class ServiceController
{
private FundsEngine _fundsEngine;
protected override void OnStart(string[] args)
{
...
0
votes
0answers
40 views
“specified cast is invalid” C#
When I try to open a form that doesnt get any parameter ,"specified cast is invalid" exception is thrown. The form loads succesfully but when I call form.showdialog it's throwing the exception. I ...





