Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

80
votes
3answers
3k views

In C++, if throw is an expression, what is its type?

I picked this up in one of my brief forays to reddit: http://www.smallshire.org.uk/sufficientlysmall/2009/07/31/in-c-throw-is-an-expression/ Basically, the author points out that in C++: throw ...
33
votes
7answers
4k views

How do exceptions work (behind the scenes) in c++

I keep seeing people say that exceptions are slow but I never see any proof. So instead of asking if they are I will ask how do exceptions work behind the scene so I can make a decisions of when to ...
18
votes
4answers
614 views

What does a single “throw;” statement do?

These days, I have been reading a lot the C++ F.A.Q and especially this page. Reading through the section I discovered a "technique" that the author calls "exception dispatcher" that allows someone ...
14
votes
6answers
6k views

Throwing exceptions from constructors

Im having a debate with a co-worker about throwing exceptions from constructors, and thought I would like some feedback. Is it ok to throw exceptions from constructors, form a design point of view? ...
13
votes
12answers
2k views

Is it okay to throw NullPointerException programatically?

When there is a post-condition, that return value of a method must not be null, what can be done ? I could do assert returnValue != null : "Not acceptable null value"; but assertions could be ...
12
votes
3answers
364 views

How do exceptions work (behind the scenes) in C#

Identical to "How do exceptions work (behind the scenes) in C++", but for C#. I know that the steps below have to be performed when an exception is thrown. Find the nearest handler for the ...
12
votes
5answers
2k views

catch exception by pointer in C++

I found that there are three ways to catch an exception, what are the differences? 1) catch by value; 2) catch by reference; 3) catch by pointer; I only know that catch by value will invoke two ...
11
votes
10answers
556 views

incorrect stacktrace by rethrow

If rethrow an exception with "throw;" but the stacktrace is incorrect: static void Main(string[] args) { try { try { throw new Exception("Test"); //Line 12 } catch (Exception ex) ...
10
votes
3answers
396 views

What can you throw in Java?

Conventional wisdom says you can only throw objects that extend Throwable in Java, but is it possible to disable the bytecode verifier and get Java to compile and run code that throws arbitrary ...
9
votes
3answers
316 views

Better to return None or throw an exception when fetching URL?

I have a Scala helper method that currently tries to fetch a URL and return an Option[String] with the HTML of that webpage. If there are any exceptions (malformed url, read timeouts, etc...) or if ...
9
votes
5answers
470 views

Throw VS rethrow : same result?

refering to a lot of documentation on the net, particularly on SO, eg : http://stackoverflow.com/questions/178456/what-is-the-proper-way-to-re-throw-an-exception-in-c there should be a difference ...
9
votes
11answers
1k views

How to throw good exceptions?

I heard you should never throw a string because there is a lack of information and you'll catch exceptions you dont expect to catch. What are good practice for throwing exceptions? do you inherit a ...
9
votes
7answers
4k views

Exception vs Assert? [closed]

Possible Duplicate: design by contract tests by assert or by exception? Is there a rule of thumb to follow when deciding to use exceptions instead of asserts (or vice versa). Right now I do ...
8
votes
1answer
108 views

Why .NET exceptions are mutable?

I'm wondering why .NET exceptions classes from Base Class Library has some mutable members by default Why I can change the Source, HelpLink and values from Data, but can't change anything else like ...
7
votes
2answers
110 views

why does it cause termination if I try to throw something inside a catch block in C++

I have the following C++ code and it gives me a surprise. The problem is that if I throw something except re-throw inside the catch block, the program will be terminated by calling abort and give the ...
7
votes
4answers
1k views

Destructor that calls a function that can throw exception in C++

I know that I shouldn't throw exceptions from a destructor. If my destructor calls a function that can throw an exception, is it OK if I catch it in the destructor and don't throw it further? Or can ...
6
votes
2answers
260 views

gcc exception specification of default destructor

class A { public: virtual ~A() { } }; class B : virtual public A { public: ~B() throw() {} }; class C : public B { }; int main(int argc, char * argv []) { return 0; } ...
6
votes
5answers
518 views

Inline throw() method in C++

I am trying to define a really simple exception class. Because it is so simple I want to keep it in the .h file only, but the compiler doesn't like throw(). The code: #include <exception> ...
6
votes
3answers
597 views

throw exception

Why can't you throw an InterruptedException in the following way: try { System.in.wait(5) //Just an example } catch (InterruptedException exception) { exception.printStackTrace(); //On this ...
6
votes
8answers
653 views

Can/Should you throw exceptions in a c# switch statement?

I have an insert query that returns an int. Based on that int I may wish to throw an exception. Is this appropriate to do within a switch statement? switch (result) { case ...
6
votes
2answers
477 views

What is the difference between throw and throw with arg of caught exception?

Imagine two similar pieces of code: try { [...] } catch (myErr &err) { err.append("More info added to error..."); throw err; } and try { [...] } catch (myErr &err) { ...
6
votes
6answers
966 views

Throwing an Exception Not Defined in the Interface

What is the best practice to follow when you need to throw an exception which was not defined in an interface that you are implementing? Here is an example: public interface Reader { public ...
6
votes
5answers
5k views

about c++ exceptions. func() throw()

i am reading this page http://www.cplusplus.com/doc/tutorial/exceptions.html it says if i write function() throw(); no exceptions can be thrown in that function. I tried in msvc 2005 writing throw(), ...
5
votes
3answers
612 views

Is it okay to manually throw an std::bad_alloc?

I have this code.. CEngineLayer::CEngineLayer(void) { // Incoming creation of layers. Wrapping all of this in a try/catch block is // not helpful if logging of errors will happen. ...
5
votes
7answers
338 views

Is this considered memory leak?

The general rule, only objects allocated in the free store can cause memory leaks. But objects created in the stack doesn't. Here is my doubt, int main() { myclass x; ... ...
5
votes
4answers
222 views

Using “Throw” in a catchblock (and nothing else!) [closed]

Possible Duplicate: difference between throw and throw new Exception() I'm a programmer working on adding new functionality to legacy code. While debugging, I parsed over this Catch block, ...
5
votes
2answers
432 views

Throwing errors in Javascript with error object relevancy

This is pretty much IE related because IE is the environment I'm using to test this, but I want to know if you can affect the relevancy of the error object properties when you throw an error. ...
5
votes
2answers
984 views

C# Real Time Try Catch

I'd like a response from someone who actually does real-time programming in C# or who really understands the language internals. I know that exceptions should not be used to handle normal processing, ...
5
votes
5answers
1k views

Do I have to break after throwing exception?

I'm writing a custom class in C# and I'm throwing a couple exceptions if people give the wrong inputs in some of the methods. If the exception is thrown, will any of the code in the method after the ...
5
votes
5answers
3k views

C#: Do you raise or throw an exception?

I know that this probably doesn't really matter, but I would like to know what is correct. If a piece of code contains some version of throw new SomeKindOfException(). Do we say that this piece of ...
5
votes
4answers
2k views

What is the benefit to limiting throws allowed by a C++ function?

What is the benefit of declaring the possible exception-throws from a C++ function? In other words, what does adding the keyword throw() actually do? I've read that a function declaration such as ...
4
votes
4answers
118 views

new then throw in C++ constructor?

If I do Bat::Bat() : m_member_str(new std::string("Am I freed?")) { throw std::runtime_error("oops"); } Is the string allocated with the new freed? I was thinking it might be only because the ...
4
votes
2answers
60 views

Odd exception terminology “throwing up”

Not that it's of groundbreaking importance or anything, but I commonly see people refer to forwarding an exception out of a method to the caller as throwing "up," when technically it is being thrown ...
4
votes
3answers
149 views

object.ReferenceEquals or == operator?

Why is ThrowIfNull implemented as: static void ThrowIfNull<T>(this T argument, string name) where T : class { if (argument == null) { throw new ...
4
votes
5answers
75 views

C++ basic exception question

Could someone please describe what's the correct way to handle the following situation: wchar_t* buffer = new wchar_t[...]; if (!something) { throw std::runtime_error("Whatever"); // Now, at ...
4
votes
3answers
183 views

A standard way in C++ to define an exception class and to throw exceptions

I want to build a class with functions that may throw exceptions that I want to catch when I use it. I inherit my_exception from the standard exception class. I implement the what() function so that ...
4
votes
1answer
135 views

Does catch (…) work on throw; with no object?

What does C++ standard say should happen for the following code when there is no pending exception being processed higher up the stack? try { throw; } catch (...) { cerr << "Caught ...
4
votes
1answer
89 views

What type of exception should be thrown in JavaScript?

What type of object should be thrown in JavaScript? I see a lot of examples which throw a plain old string and there seems to be a semi-standard Error type. Should I prefer one over the other?
4
votes
1answer
805 views

Does throw inside a catch ellipsis (…) rethrow the original error?

If in my code I do the following snippet: try { doSomething(); } catch (...) { doSomethingElse(); throw; } Will the throw rethrow the specific exception caught by the default ellipsis ...
4
votes
5answers
483 views

When should I use a ThrowHelper method instead of throwing directly?

When is it appropriate to use a ThrowHelper method instead of throwing directly? void MyMethod() { ... //throw new ArgumentNullException("paramName"); ...
3
votes
3answers
112 views

Declaration of void abort() throws different exceptions

I am trying to write some C++ code (using the C++ API) for Festival and am getting stuck while trying to compile. Here is how I invoke g++: g++ -Wall -pedantic -I../ -I../speech_tools/include/ ...
3
votes
8answers
121 views

How throw, try {} catch {} should be used in the real world?

I mean, I knew all the language rules about throw, try {} catch {}, but I am not sure if I am using them correctly in the real world. Please see the following example: We have a large piece of ...
3
votes
3answers
105 views

Is it possible to throw two values at the same time?

I have 4-line and two throw statements ; Pseudocode ; In function f () if a == 2 throw SMT_0 if b == 3 throw SMT_1 For a != 2 and b != 3, I want to throw both ...
3
votes
6answers
413 views

Java unchecked/checked exception clarification

I've been reading about unchecked versus checked questions, none of the online resources have been truly clear about the difference and when to use both. From what I understand, both of them get ...
3
votes
14answers
970 views

Performance cost of coding “exception driven development” in Java?

Are there are any performance cost by creating, throwing and catching exceptions in Java? I am planing to add 'exception driven development' into a larger project. I would like to design my own ...
3
votes
6answers
235 views

What is the point of `void func() throw(type)`?

I know this is a valid c++ program. What is the point of the throw in the function declarement? AFAIK it does nothing and isnt used for anything. #include <exception> void func() ...
3
votes
4answers
199 views

Exception libraries for C (not C++)

I am rolling my own exception library for C and would like good examples to examine. So far, I have been looking at David Hanson's: http://drhanson.net/work/ But I know I've seen other ones ...
3
votes
5answers
251 views

What is “throw”

Can anyone please explain me use of throw in exception handling? What happens when i throw an exception?
2
votes
3answers
80 views

Visual Studio does not show the original location of rethrown inner exception in C#

So I followed the recommended answer shown at How to rethrow the inner exception of a TargetInvocationException without losing the stack trace and ended up with code that looks like this: // Inside ...
2
votes
1answer
82 views

WPF Dispatcher Thread- Using lambda expression and throw to dispatch exception to UI thread

try { string s = null; s.PadLeft(10); } catch (Exception ex) { // send exception to UI Thread so it can be handled by our global exception // handler ...

1 2 3