Browse Source

Don't discard existing exception stack trace when rethrowing

Matt Benic 8 years ago
parent
commit
ae1c96035d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Script/AtomicNET/AtomicNET/Application/Application.cs

+ 1 - 1
Script/AtomicNET/AtomicNET/Application/Application.cs

@@ -76,7 +76,7 @@ namespace AtomicEngine
                 {
                     Log.Error(e.StackTrace);
                     // rethrow
-                    throw e;
+                    throw;
                 }
             }
             finally