In C++, I rethrow an exception without explicitly catching it
catch(...)
{
throw;
}
Anyone know of a way to do the same thing in D?
catch
{
// rethrow?
}
--rt
In C++, I rethrow an exception without explicitly catching it
catch(...)
{
throw;
}
Anyone know of a way to do the same thing in D?
catch
{
// rethrow?
}
--rt