3
votes
4answers
34 views
How do you catch a thrown soap exception from a web service?
I throw a few soap exceptions in my web service successfully. I would like to catch the exceptions and access the string and ClientFaultCode that are called with the exception. Her …
1
vote
3answers
115 views
How to get rid of exceptions thrown by the .NET framework
In a recent project I'm using a lot of databinding and xml-serialization. I'm using C#/VS2008 and have downloaded symbol information for the .NET framework to help me when debuggin …
0
votes
3answers
19 views
ASP.NET Exception Handling
I'm working on a traditional ASP.NET application where I'm making a WCF call to perform some operations.
The question is, should I put a try catch around the WCF call and display …
26
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
178 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
10answers
229 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
162 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
110 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
80 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
65 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 …
2
votes
3answers
64 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
43 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
64 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
52 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 …
