blob: ecabfdd65670f92546e38df840585f228afc454d [file] [log] [blame]
class MyError : Error
{
this(string msg)
{
super(msg);
}
}
void foo() nothrow
{
throw new Error("Some error");
}
void bar() nothrow
{
throw new MyError("Some error");
}