예제 #1
0
파일: Logger.cs 프로젝트: ByteChkR/Minor
 /// <summary>
 /// A static extension to throw exceptions at one place to have a better control what to throw and when to throw
 /// </summary>
 /// <param name="obj">The object throwing the exception</param>
 /// <param name="ex">The exception that led to the crash</param>
 public static void Crash(EngineException ex, bool recoverable)
 {
     DebugHelper.Crash(ex, recoverable);
 }