Why does vibe.d throw? Also, any throwing code can be converted to nothrow with:
try
{
...throwing code...
}
catch (Exception e)
{
...
}
Walter Bright via Digitalmars-d Tue, 10 May 2016 18:12:44 -0700
Why does vibe.d throw? Also, any throwing code can be converted to nothrow with:
try
{
...throwing code...
}
catch (Exception e)
{
...
}