SDownload.Framework.HandledException.HandledException C# (CSharp) 메소드

HandledException() 공개 메소드

Handled exception that reports a message to the user and provides an option to report if necessary
public HandledException ( String message, bool canReport = false ) : System
message String Message to show in the popup, null to use exception message
canReport bool If the exception should be reported to Bugsense
리턴 System
        public HandledException(String message, bool canReport = false)
            : base(message)
        {
            IsCritical = canReport;
        }
HandledException