Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
2answers
263 views

How can std::runtime_error::runtime_error(const std::string&) meet std::exception's requirement of throw()?

std::exception requires that its constructor be throw(). Yet std::runtime_error accepts a std::string as its argument, which indicates that it's storing a std::string somewhere. Therefore, an ...
13
votes
2answers
266 views

Exception Specification

I know that this feature will be deprecated in C++0x, but for me as a total novice it seems like a good idea to have it. Could anyone explain to me why isn't a good idea?
8
votes
1answer
617 views

How does an exception specification affect virtual destructor overriding?

The C++ Standard states the following about virtual functions that have exception specifications: If a virtual function has an exception-specification, all declarations, including the definition, ...
8
votes
11answers
558 views

Is there a generally accepted idiom for indicating C++ code can throw exceptions?

I have seen problems when using C++ code that, unexpectedly to the caller, throws an exception. It's not always possible or practical to read every line of a module that you are using to see if it ...
6
votes
2answers
985 views

Exception specification when overriding a virtual function

Consider the following code: class A { public: virtual void f() throw ( int ) { } }; class B: public A { public: void f() throw ( int, double ) { } }; When compiled, it says that derived ...
5
votes
1answer
669 views

throw specifiers when deriving from std::exception with GCC 4.4 c++0x

I have an exception class as follows: #include <exception> struct InvalidPathException : public std::exception { explicit InvalidPathException() {} const char* what() const; }; const ...
4
votes
3answers
90 views

Try/Catch or IF for handling missing Files?

Is it better to try/catch exceptions or to use if statements to handle the different outcomes? I am writing a short program in Java to copy files for convenience, and use the ifs to handle the event ...
3
votes
1answer
197 views

C++ Misfeatures Based on Experience [closed]

Recently a colleague asked my opinion on the use of exception specifications in C++ code, and I was able to dredge up this article by Herb Sutter: A Pragmatic Look at Exception Specifications. The ...
2
votes
3answers
430 views

How to get rid of “C++ exception specification ignored” warning

I recently got a dll that has been implemented by others. I have to use it in my application. In the header file of their class they have the function declaration void func1() throw ...
2
votes
2answers
139 views

Revert exception specifications behavior under VC++ 9.0

I'm working on old code that relies heavily on the exception specifications behavior described in the language standard. Namely, calls to std::unexpected() on exception specification violations of the ...
1
vote
2answers
213 views

Can g++ check the throw specifiers?

Two questions about this : Is there a way to force g++ to ignore the throw specifiers ? (for example, as I remember, Visual Studio ignores the throw specifiers, different from throw()) Is it ...
1
vote
0answers
29 views

exception specification in derived class

class Base { public: void virtual myFunc() throw(double, int, long); }; class Derived: public Base { /* What are the possible exception specifications*/ }; What all can replace that comment ...
0
votes
1answer
323 views

C++\CLI exception specification not allowed

I'm an experienced unmanaged C++ developer, new to C++\CLI. How come managed C++ doesnt allow exception specification? Example link What's the best practice for specifying exceptions my methods ...
0
votes
3answers
404 views

Is it possible to provide exceptions in C++ virtual(pure) class member?

If so how? I know how to provide exception specifications for members such as class SOMEClass { public: void method(void) throw (SOMEException); virtual void pure_method(void) = 0; }; ...