Connecting Tech Pros Worldwide Forums | Help | Site Map

Is it possible to catch an exception raised by a member variable?

Angus
Guest
 
Posts: n/a
#1: Sep 27 '07
Hello

I have a class I am using which raises an exception in its constructor
if certain things aren't in place. I can easily create the situation
where an exception is raised.

If I use the create a member variable in a class using this class then
how do I catch the exception?

For now I have defined a member function as a pointer and in my
constructor in my class using the class which raises the exception, I
do a try catch block and do a new object. That works. But is it
possible to do a similar thing using a member variable?

Angus




Victor Bazarov
Guest
 
Posts: n/a
#2: Sep 27 '07

re: Is it possible to catch an exception raised by a member variable?


Angus wrote:
Quote:
I have a class I am using which raises an exception in its constructor
if certain things aren't in place. I can easily create the situation
where an exception is raised.
OK. So creation of a subobject fails. Quite common.
Quote:
If I use the create a member variable in a class using this class then
how do I catch the exception?
The exception has to be caught by the code that instantiates (or rather
tries to instantiate) the host object.
Quote:
For now I have defined a member function as a pointer and in my
constructor in my class using the class which raises the exception, I
do a try catch block and do a new object. That works. But is it
possible to do a similar thing using a member variable?
Yes, but if your member fails to be constructed, can your object still
exist and function? If it can, you should use the pointer solution,
which apparently works. If your object cannot exist and function with
some part of it missing, then you should do nothing, the constructor
of the entire object will throw (because some part of it throws), and
the exception has to be caught outside.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask


Chris ( Val )
Guest
 
Posts: n/a
#3: Sep 28 '07

re: Is it possible to catch an exception raised by a member variable?


On Sep 28, 7:30 pm, "Chris ( Val )" <chris...@gmail.comwrote:
Quote:
On Sep 28, 7:03 pm, James Kanze <james.ka...@gmail.comwrote:
Oh, I forgot to post the output - Here it is:

Exception Caught: "Could not connect to database"
I am still alive - Please try again.
Destructing now...

Cheers,
Chris Val

Pete Becker
Guest
 
Posts: n/a
#4: Sep 28 '07

re: Is it possible to catch an exception raised by a member variable?


On 2007-09-28 05:30:31 -0400, "Chris ( Val )" <chrisval@gmail.comsaid:
Quote:
>
int main()
{
Base* B;
>
try {
B = new Base( "Oracle.driver.bar" );
}
catch( const std::exception& e )
{
B->Print();
delete B;
}
>
std::cin.get();
return 0;
}
>
I am interested to hear your, and the groups
thoughts on the validity of such a construct.
>
It really doesn't show anything. Replace the "B = new ..." with "throw
std::exception();" and you'll probably get the same result. Calling
member functions on uninitialized pointers produces undefined behavior,
so anything you see is as valid as anything else.

--
Pete
Roundhouse Consulting, Ltd. (www.versatilecoding.com) Author of "The
Standard C++ Library Extensions: a Tutorial and Reference
(www.petebecker.com/tr1book)

Chris ( Val )
Guest
 
Posts: n/a
#5: Sep 28 '07

re: Is it possible to catch an exception raised by a member variable?


On Sep 28, 10:52 pm, Pete Becker <p...@versatilecoding.comwrote:
Quote:
On 2007-09-28 05:30:31 -0400, "Chris ( Val )" <chris...@gmail.comsaid:
>
>
>
>
>
>
>
Quote:
int main()
{
Base* B;
>
Quote:
try {
B = new Base( "Oracle.driver.bar" );
}
catch( const std::exception& e )
{
B->Print();
delete B;
}
>
Quote:
std::cin.get();
return 0;
}
>
Quote:
I am interested to hear your, and the groups
thoughts on the validity of such a construct.
>
It really doesn't show anything. Replace the "B = new ..." with "throw
std::exception();" and you'll probably get the same result. Calling
member functions on uninitialized pointers produces undefined behavior,
so anything you see is as valid as anything else.
I tried a non pointer version, and the results are the same.

What I am curious about is at what point does the object actually
cease to exist? (which scope?)

Is it not possible for it to even be partially constucted to
report such information back?

I know UB can mean anything can happen, but I'm curious.
Its a powerful drug that UB, it can get you hooked line
and sinker :-)

Thanks for the feedback,
Chris Val

Victor Bazarov
Guest
 
Posts: n/a
#6: Sep 28 '07

re: Is it possible to catch an exception raised by a member variable?


Chris ( Val ) wrote:
Quote:
On Sep 28, 10:52 pm, Pete Becker <p...@versatilecoding.comwrote:
Quote:
>On 2007-09-28 05:30:31 -0400, "Chris ( Val )" <chris...@gmail.com>
>said:
>>
>>
>>
>>
>>
>>
>>
Quote:
>>int main()
>> {
>> Base* B;
>>
Quote:
>> try {
>> B = new Base( "Oracle.driver.bar" );
>> }
>> catch( const std::exception& e )
>> {
>> B->Print();
>> delete B;
>> }
>>
Quote:
>> std::cin.get();
>> return 0;
>> }
>>
Quote:
>>I am interested to hear your, and the groups
>>thoughts on the validity of such a construct.
>>
>It really doesn't show anything. Replace the "B = new ..." with
>"throw std::exception();" and you'll probably get the same result.
>Calling member functions on uninitialized pointers produces
>undefined behavior, so anything you see is as valid as anything else.
>
I tried a non pointer version, and the results are the same.
>
What I am curious about is at what point does the object actually
cease to exist? (which scope?)
The pointer does not cease to exist. The object, however, is not
created. So, whatever address the pointer contains in the 'catch'
block, is not the address of a valid object. That makes the pointer
_invalid_.
Quote:
Is it not possible for it to even be partially constucted to
report such information back?
Partially constructed means not fully constructed, doesn't it? In
my book you cannot use any partially constructed object except to
take its address.
Quote:
I know UB can mean anything can happen, but I'm curious.
Its a powerful drug that UB, it can get you hooked line
and sinker :-)
Yep.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask


Chris ( Val )
Guest
 
Posts: n/a
#7: Sep 28 '07

re: Is it possible to catch an exception raised by a member variable?


On Sep 29, 12:35 am, "Victor Bazarov" <v.Abaza...@comAcast.netwrote:
Quote:
Chris ( Val ) wrote:
[snip]
Quote:
Quote:
What I am curious about is at what point does the object actually
cease to exist? (which scope?)
>
The pointer does not cease to exist. The object, however, is not
created. So, whatever address the pointer contains in the 'catch'
block, is not the address of a valid object. That makes the pointer
_invalid_.
>
Quote:
Is it not possible for it to even be partially constucted to
report such information back?
>
Partially constructed means not fully constructed, doesn't it?
Yes.
Quote:
In my book you cannot use any partially constructed object except to
take its address.
Thats fine, but I thought there may be a chance that the
object could be stopped in its tracs, and somehow completed.

But having a re-think about it doesn't seem possible, well
at least I couldn't find any supporting material without
spending hours digging deep into the standard :-)
Quote:
Quote:
I know UB can mean anything can happen, but I'm curious.
Its a powerful drug that UB, it can get you hooked line
and sinker :-)
>
Yep.
Thanks again,
Chris Val

Pete Becker
Guest
 
Posts: n/a
#8: Sep 28 '07

re: Is it possible to catch an exception raised by a member variable?


On 2007-09-28 10:33:00 -0400, "Chris ( Val )" <chrisval@gmail.comsaid:
Quote:
>
What I am curious about is at what point does the object actually
cease to exist? (which scope?)
>
Well, formally, it never existed, because its constructor didn't run to
completion. Mechanically, what happens is that when the exception
escapes from the try block (or, more generally, when an exception
escapes from a constructor), the destructors for the various subobjects
that have been constructed are run. In addition, if the object was
being created with new, the compiler calls the corresponding operator
delete to release the memory. It's up to the compiler to get all that
logic right.

struct OK
{
~OK() { std::cout << "destroying an OK object\n"; }
};

struct Throws
{
Throws { throw 1; }
};

struct Complicated: OK, Throws, OK
{
~Complicated() { std::cout << "destroying a Complicated object\n"; }
};

Your compiler might warn you that you can't call members of OK, because
their names are ambiguous. Ignore that: it's not relevant here.

Try creating an object of type Complicated. (I haven't compiled this
code, but it ought to be more or less okay).

--
Pete
Roundhouse Consulting, Ltd. (www.versatilecoding.com) Author of "The
Standard C++ Library Extensions: a Tutorial and Reference
(www.petebecker.com/tr1book)

Pete Becker
Guest
 
Posts: n/a
#9: Sep 28 '07

re: Is it possible to catch an exception raised by a member variable?


On 2007-09-28 10:54:39 -0400, Pete Becker <pete@versatilecoding.comsaid:
Quote:
On 2007-09-28 10:33:00 -0400, "Chris ( Val )" <chrisval@gmail.comsaid:
>
Quote:
>>
>What I am curious about is at what point does the object actually
>cease to exist? (which scope?)
>>
>
Well, formally, it never existed, because its constructor didn't run to
completion. Mechanically, what happens is that when the exception
escapes from the try block
Sorry, I suspect that should be "from the catch clause". I'm a bit
pressed for time this morning, so I haven't looked it up.

--
Pete
Roundhouse Consulting, Ltd. (www.versatilecoding.com) Author of "The
Standard C++ Library Extensions: a Tutorial and Reference
(www.petebecker.com/tr1book)

James Kanze
Guest
 
Posts: n/a
#10: Sep 28 '07

re: Is it possible to catch an exception raised by a member variable?


On Sep 28, 11:30 am, "Chris ( Val )" <chris...@gmail.comwrote:
Quote:
On Sep 28, 7:03 pm, James Kanze <james.ka...@gmail.comwrote:
[...]
Quote:
Quote:
But you still don't have an object. You can use function try
blocks to remap the exception, or to treat it as a fatal error
(e.g. by calling abort or exit), but you cannot return normally
from the constructor, and the object that was being constructed
will not exist.
Quote:
I have produced a crude example that will attempt to
prove otherwise:
Quote:
# include <iostream>
# include <string>
# include <exception>
Quote:
struct DataSource {
DataSource( std::string ds )
{
if( ds != "Oracle.driver.foo" )
throw "Could not connect to database";
}
};
Quote:
class Base
{
private:
DataSource Ds;
public:
Base( std::string );
~Base() { std::cout << "Destructing now...\n"; }
void Print()
{ std::cout << "I am still alive - Please try again.\n"; }
};
Quote:
Base::Base( std::string ds )
try // function-try block
: Ds( ds ) {}
catch( const char* msg ) {
std::cout << "Exception Caught: \"" << msg << "\"" << '\n';
throw std::exception();
}
Quote:
int main()
{
Base* B;
Quote:
try {
B = new Base( "Oracle.driver.bar" );
}
catch( const std::exception& e )
{
B->Print();
This is undefined behavior, since it accesses an uninitialized
pointer. If you get here, the assign in the try block has never
occured (and there is no Base object).
Quote:
delete B;
}
Quote:
std::cin.get();
return 0;
}
Quote:
I am interested to hear your, and the groups
thoughts on the validity of such a construct.
Totally invalide.

--
James Kanze (GABI Software) email:james.kanze@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

James Kanze
Guest
 
Posts: n/a
#11: Sep 28 '07

re: Is it possible to catch an exception raised by a member variable?


On Sep 28, 4:33 pm, "Chris ( Val )" <chris...@gmail.comwrote:
Quote:
On Sep 28, 10:52 pm, Pete Becker <p...@versatilecoding.comwrote:
Quote:
On 2007-09-28 05:30:31 -0400, "Chris ( Val )" <chris...@gmail.comsaid:
Quote:
Quote:
Quote:
int main()
{
Base* B;
Quote:
Quote:
Quote:
try {
B = new Base( "Oracle.driver.bar" );
}
catch( const std::exception& e )
{
B->Print();
delete B;
}
Quote:
Quote:
Quote:
std::cin.get();
return 0;
}
Quote:
Quote:
Quote:
I am interested to hear your, and the groups
thoughts on the validity of such a construct.
Quote:
Quote:
It really doesn't show anything. Replace the "B = new ..." with "throw
std::exception();" and you'll probably get the same result. Calling
member functions on uninitialized pointers produces undefined behavior,
so anything you see is as valid as anything else.
Quote:
I tried a non pointer version, and the results are the same.
Could you show it. If you replace the line with new Base...,
with something like:

Base b( "Oracle.driver.bar" ) ;

then b isn't even in scope in the catch block, and cannot be
accessd.
Quote:
What I am curious about is at what point does the object actually
cease to exist? (which scope?)
Which object. The object whose destructor exits via an
exception never begins to exist, so the question of when it
ceases to exist is moot.
Quote:
Is it not possible for it to even be partially constucted to
report such information back?
No. Or rather, it can put information in the exception, which
will propagate up. But if a constructor exits because of an
exception, all fully constructed sub-objects are immediately
destructed, and if the constructor was called as part of a new
expression, the allocated memory is immediately freed.

--
James Kanze (GABI Software) email:james.kanze@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

Chris ( Val )
Guest
 
Posts: n/a
#12: Sep 29 '07

re: Is it possible to catch an exception raised by a member variable?


On Sep 29, 8:38 am, James Kanze <james.ka...@gmail.comwrote:
Quote:
On Sep 28, 11:30 am, "Chris ( Val )" <chris...@gmail.comwrote:
>
Quote:
On Sep 28, 7:03 pm, James Kanze <james.ka...@gmail.comwrote:
>
[...]
>
>
>
>
>
Quote:
Quote:
But you still don't have an object. You can use function try
blocks to remap the exception, or to treat it as a fatal error
(e.g. by calling abort or exit), but you cannot return normally
from the constructor, and the object that was being constructed
will not exist.
I have produced a crude example that will attempt to
prove otherwise:
# include <iostream>
# include <string>
# include <exception>
struct DataSource {
DataSource( std::string ds )
{
if( ds != "Oracle.driver.foo" )
throw "Could not connect to database";
}
};
class Base
{
private:
DataSource Ds;
public:
Base( std::string );
~Base() { std::cout << "Destructing now...\n"; }
void Print()
{ std::cout << "I am still alive - Please try again.\n"; }
};
Base::Base( std::string ds )
try // function-try block
: Ds( ds ) {}
catch( const char* msg ) {
std::cout << "Exception Caught: \"" << msg << "\"" << '\n';
throw std::exception();
}
int main()
{
Base* B;
try {
B = new Base( "Oracle.driver.bar" );
}
catch( const std::exception& e )
{
B->Print();
>
This is undefined behavior, since it accesses an uninitialized
pointer. If you get here, the assign in the try block has never
occured (and there is no Base object).
>
Quote:
delete B;
}
std::cin.get();
return 0;
}
I am interested to hear your, and the groups
thoughts on the validity of such a construct.
>
Totally invalide.
The non-pointer version that I spoke of was
totally wrong. I thought about it after I
posted, amd realised I was just assigning
a new object in the catch block. It was late
and I totally confused myself :-)

Thanks to both you and Peter for clarifying it.

Cheers,
Chris Val

Chris ( Val )
Guest
 
Posts: n/a
#13: Sep 29 '07

re: Is it possible to catch an exception raised by a member variable?


On Sep 29, 12:57 am, Pete Becker <p...@versatilecoding.comwrote:
Quote:
On 2007-09-28 10:54:39 -0400, Pete Becker <p...@versatilecoding.comsaid:
>
Quote:
On 2007-09-28 10:33:00 -0400, "Chris ( Val )" <chris...@gmail.comsaid:
>
Quote:
Quote:
What I am curious about is at what point does the object actually
cease to exist? (which scope?)
>
Quote:
Well, formally, it never existed, because its constructor didn't run to
completion. Mechanically, what happens is that when the exception
escapes from the try block
>
Sorry, I suspect that should be "from the catch clause". I'm a bit
pressed for time this morning, so I haven't looked it up.
No problem at all, I appreciate the help and example.

Thanks,
Chris Val




Closed Thread


Similar C / C++ bytes