NanoByte.Common.Tasks.DialogTaskHandler.Error C# (CSharp) 메소드

Error() 공개 메소드

public Error ( Exception exception ) : void
exception System.Exception
리턴 void
        public override void Error(Exception exception)
        {
            #region Sanity checks
            if (exception == null) throw new ArgumentNullException(nameof(exception));
            #endregion

            Log.Error(exception);
            Msg.Inform(_owner, exception.Message, MsgSeverity.Error);
        }
    }