Why does vibe.d throw?

Also, any throwing code can be converted to nothrow with:

   try
   {
        ...throwing code...
   }
   catch (Exception e)
   {
        ...
   }

Reply via email to