25
votes
27answers
2k views
Why should exceptions be used conservatively?
Possible Duplicate:
Why is exception handling bad?
I often see/hear people say that exceptions should only be used rarely, but never explain why. While that may be true, r …
5
votes
8answers
156 views
Java Exceptions, What to catch and what not to?
I keep getting the dreaded java.something.someException errors while running my java app. and I don't seem to be getting the hang of what exceptions to handle and what not to?
When …
3
votes
11answers
215 views
Is there really a performance hit when catching exceptions
edit: Someone had added the C# keyword. I am NOT talking about C#. just exception in general. Specific in compiled languages like C++ and D, C# was also in my mind.
I asked a que …
0
votes
5answers
156 views
Which is preferable and less expensive: class matching vs exception?
Which is less expensive and preferable: put1 or put2?
Map<String, Animal> map = new Map<String, Animal>();
void put1(){
for (.....)
if (Animal.class.isAssignableFr …
1
vote
2answers
93 views
Preserving SCRIPT tags (and more) in CKEditor
Update: I'm thinking the solution to this problem is in CKEDITOR.config.protectedSource(), but my regular-expression experience is proving to be too juvenile to handle this issue. …
0
votes
5answers
72 views
Java coding practice, runtime exceptions and this scenario
In the following scenario, I was trying to see how to handle this code and it how it relates to Runtimexception. I have read that is generally better to throw runtime exceptions a …
0
votes
3answers
60 views
Biff exception in Java
When I tried to read an Excel file in Java it throws "biff exception".
What does this mean? I tried to Google it but wasn't able to find a proper explanation.
jxl.read.biff.BiffE …
1
vote
3answers
53 views
Exception while compiling: wrong version 50.0, should be 49.0
I am working an application with JXL API and when i tried compiling using eclipse IDE, it's working fine and the same is not compiling when i am trying to compile in Command prompt …
1
vote
4answers
37 views
accessing private variable from member function in PHP
I have derived a class from Exception, basically like so:
class MyException extends Exception {
private $_type;
public function type() {
return $this->_type; //l …
0
votes
5answers
62 views
Problem with exceptions and arrays
Can't really understand what's going wrong here?
It's just a simple exception with an array out of bounds.
public class Days
{
public static void main (String args[])
{
…
0
votes
2answers
44 views
ASP.NET DataSource Control “does not have a naming container” exception
I've been getting this exception in my code and wondered if anyone could help me out.
I have a Repeater Control bound to an ObjectDataSource, and the itemtemplate for the repeater …
2
votes
1answer
50 views
save Exceptions to file in python
Hello, I want to save all following Exceptions in a file. The reason why I need this is because the IDLE for python 3.1.1 in Ubuntu raises an Exception at calltipps, but close to f …
1
vote
3answers
83 views
Cross compiler exception handling - Can it be done safely?
I am doing some maintenance on a C++ windows dll library that is required to work with different VC++ compilers (as I don’t want to address different mangling schemes).
I have al …
0
votes
2answers
70 views
First chance exception - long at memory location?
What is this and how can I handle/fix it?
First-chance exception at 0x756fb727 in Program.exe: Microsoft
C++ exception: long at memory location
0x0018f7a4.
I am getting …
2
votes
2answers
37 views
Unit Test for Exceptions Message
Is there a simple (Attribute-driven) way to have the following test fail on the message of the exception.
[TestMethod()]
[ExpectedException(typeof(ArgumentException))]
public void …
