[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
caught non-std exception
From: |
Mike - EMAIL IGNORED |
Subject: |
caught non-std exception |
Date: |
Sat, 18 Mar 2006 14:24:59 -0500 |
User-agent: |
Pan/0.14.2.91 (As She Crawled Across the Table) |
On FC4 with g++ using STL and Posix threads
and sockets I am catching an exception that
is not a std::exception. Any idea what it
might be? An outline of my catch macro is
below.
Thanks,
Mike.
#define MY_MACRO \
catch (MyExceptions& e) \
{ \
... \\ process them \
} \
catch (std::exception& e) \
{ \
... \\ process them \
} \
catch (...) \
{ \
... \\ what is this \
}
- caught non-std exception,
Mike - EMAIL IGNORED <=