「Unity/Csharp/Exception」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==Exception例文== <pre> void Exec() { try { Hoge(); } catch (Exception e) { Debug.LogError(e.Message + ": [" + e.StackTrace + "] nam...」) |
(相違点なし)
|
2023年9月29日 (金) 16:51時点における版
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/クラッシュ [ショートカット]