Catches any exception in the expression and throws a new one specified by E and args
import std.conv; class MyException : Exception { ... } "x".to!int().rethrow!MyException("My message");
See Implementation
Catches any exception in the expression and throws a new one specified by E and args