facebook twitter hatena line email

「Unity/Csharp/Exception」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==Exception例文== <pre> void Exec() { try { Hoge(); } catch (Exception e) { Debug.LogError(e.Message + ": [" + e.StackTrace + "] nam...」)
 
 
(同じ利用者による、間の2版が非表示)
行1: 行1:
==Exception例文==
+
[[Unity/Csharp/Exception/Exception]]
<pre>
+
void Exec()
+
{
+
    try
+
    {
+
        Hoge();
+
    }
+
    catch (Exception e)
+
    {
+
        Debug.LogError(e.Message + ": [" + e.StackTrace + "] name:" + e.GetType().Name);
+
    }
+
}
+
void Hoge()
+
{
+
    throw new Exception("例外エラーNormal");
+
}
+
</pre>
+
出力
+
例外エラーNormal: [ at ExceptionScene.Exec () [0x00007] in unity/test/SentryProject/Assets/Scripts/Scene/ExceptionScene.cs:27 ] name:Exception
+
  
==関連==
+
[[Unity/Csharp/Exception/NullReferenceException]]
[[Unity/クラッシュ]] [ショートカット]
+

2023年10月17日 (火) 15:40時点における最新版

Unity/Csharp/Exception/Exception

Unity/Csharp/Exception/NullReferenceException