Rethrow an exception like in C++?

Rob T alanb at ucora.com
Thu Mar 7 17:46:43 PST 2013


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


More information about the Digitalmars-d-learn mailing list