2
votes
3answers
29 views
Does a exception with just a raise have any use?
For example, here is some code from django.templates.loader.app_directories.py.[1]
try:
yield safe_join(template_dir, template_name)
except UnicodeDecodeError:
…
0
votes
2answers
69 views
Using Exceptions exceptionally
Hi guys,
This is a refactoring question.
try
{
string line = GetFirstLineFromFile(); //Gets first line from a text file, this line would be a number.
int value = ConvertToInt …
0
votes
3answers
41 views
Exceptions, return values, and contextual information
I know that this type of question has been asked over and over again, however, I have yet to find a definitive answer for the problem I am looking into.
From all the content on e …
1
vote
4answers
58 views
Is it ok for different implementing classes to throw different exception types?
If i have an interface, which i add comments to to identify that a specific exception will be thrown, is it ok for implementing classes to throw different exceptions?
A (bad) exam …
3
votes
8answers
124 views
C# Exception Handling Fall Through
Is there any way in C# to easily achieve the following pseduo-code:
try
{
...
}
catch ( ExceptionTypeA, ExceptionTypeB, ExceptionTypeC as ex)
{
... same code for all threw
}
Or
…
0
votes
1answer
29 views
terminate called after throwing an instance of ‘Poco::SystemException’
Sometimes (about 1 out of 100 runs), my program terminates with this message:
terminate called after throwing an instance of 'Poco::SystemException'
what(): System exception
…
2
votes
1answer
19 views
Is it possible to catch / handle exceptions thrown from a Grails controller? Aop?
class MyController {
def myAction = {
throw new MyException("Test")
}
}
Is it possible to catch / handle the exception thrown by the code above? The following url-map …
1
vote
4answers
87 views
beginner question about exception in java
when an exception occurs that a method is unable to handle - does the program terminate and show the error number ? where does the error number and information about the error come …
1
vote
10answers
129 views
ArrayIndexOutOfBoundsException not being caught and ignored
I want to catch and ignore and ArrayIndexOutOfBoundsException error (basically it's not something I have control over, so I need my program to keep chugging along).
However my try …
0
votes
2answers
43 views
does throws exception leads the program to a pre written code
( patience requested as i'm new to programming )
when you add the phrase throws ABCexception in method declaration like this
public static void main(String[] args) throws ABCExc …
0
votes
2answers
22 views
Inherit Exception class to log all subsequenace occourance of exception
If I want to log all occournace of exception through out my application so far,
should I inherit Exception class and throw all exception of that class,
whose constructor will log …
0
votes
3answers
100 views
How to handle an exception within exception handling code?
I've got some code in my web app to deal with unhandled exceptions - it hands off to a fancy custom error page which logs the details. But what if there's an unhandled exception wi …
0
votes
2answers
20 views
Serializable exception and WCF
if i made my exception Serializable like this article from msdn , so can my exception serialized over WCF ?
0
votes
1answer
11 views
JasperReport exception print
I making report engine with JasperReport. Everything works fine so far but I have small miss understanding. In my code I'm trying to compile template file and return JasperReport o …
2
votes
6answers
85 views
How to log exceptions in Windows Forms Application
I read a lot about how bad catching base Exceptions is and I have to confess that I did it also:
try{
...
}
catch (Exception exception){
MessageBox.Show(exception.Message, …
