Example #1
0
        public WdtException(PlatformExceptionType exceptionType, string errorCode, string exceptionMessage, object tag,
                            bool isSeriousLevel, params object[] processParam)
            : base(exceptionMessage)
        {
            ExceptionType = exceptionType;
            ErrorCode     = errorCode;
            Tag           = tag;
            NeedInterrupt = false;

            IsSeriousLevel = isSeriousLevel;
            ProcessParam   = processParam;
        }
Example #2
0
 public WdtException(PlatformExceptionType exceptionType, string errorCode, string exceptionMessage)
     : this(exceptionType, errorCode, exceptionMessage, null)
 {
 }
Example #3
0
 public WdtException(PlatformExceptionType exceptionType, string errorCode, string exceptionMessage, object tag)
     : this(exceptionType, errorCode, exceptionMessage, tag, false, null)
 {
 }
Example #4
0
 public WdtException(PlatformExceptionType exceptionType)
 {
     ExceptionType = exceptionType;
 }