Internal_LogException() 개인적인 메소드

private Internal_LogException ( Exception exception, [ obj ) : void
exception System.Exception
obj [
리턴 void
예제 #1
0
        public void LogException(Exception exception, Object context)
        {
            bool flag = exception == null;

            if (flag)
            {
                throw new ArgumentNullException("exception");
            }
            DebugLogHandler.Internal_LogException(exception, context);
        }
 public void LogException(Exception exception, Object context)
 {
     DebugLogHandler.Internal_LogException(exception, context);
 }