facebook twitter hatena line email

Unity/Csharp/Exception

提供: 初心者エンジニアの簡易メモ
2023年9月29日 (金) 16:51時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「==Exception例文== <pre> void Exec() { try { Hoge(); } catch (Exception e) { Debug.LogError(e.Message + ": [" + e.StackTrace + "] nam...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

Exception例文

void Exec()
{
    try
    {
        Hoge();
    }
    catch (Exception e)
    {
        Debug.LogError(e.Message + ": [" + e.StackTrace + "] name:" + e.GetType().Name);
    }
}
void Hoge()
{
    throw new Exception("例外エラーNormal");
}

出力

例外エラーNormal: [  at ExceptionScene.Exec () [0x00007] in unity/test/SentryProject/Assets/Scripts/Scene/ExceptionScene.cs:27 ] name:Exception

関連

Unity/クラッシュ [ショートカット]