|
|
От: |
Vladik
|
|
| Дата: | 04.01.03 15:12 | ||
| Оценка: | |||
class BaseException
{
};
class DerivedException : public Exception
{
};
...
try
{
throw DerivedException();
}
catch(DerivedException &)
{
}
catch(BaseException &)
{
}