浏览代码

Use more generic exception catching

/bullet-hell-barracuda-test-1.3.1
Arthur Juliani 4 年前
当前提交
abd618fe
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 4
      com.unity.ml-agents/Runtime/Timer.cs

4
com.unity.ml-agents/Runtime/Timer.cs


SaveJsonTimers(fs);
fs.Close();
}
catch (IOException)
catch (SystemException)
// It's possible we don't have write access to the directory.
// We may not have write access to the directory.
Debug.LogWarning($"Unable to save timers to file {filename}");
}
#endif

正在加载...
取消
保存