Exemplo n.º 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;
        }
Exemplo n.º 2
0
 public WdtException(PlatformExceptionType exceptionType, string errorCode, string exceptionMessage)
     : this(exceptionType, errorCode, exceptionMessage, null)
 {
 }
Exemplo n.º 3
0
 public WdtException(PlatformExceptionType exceptionType, string errorCode, string exceptionMessage, object tag)
     : this(exceptionType, errorCode, exceptionMessage, tag, false, null)
 {
 }
Exemplo n.º 4
0
 public WdtException(PlatformExceptionType exceptionType)
 {
     ExceptionType = exceptionType;
 }