示例#1
0
文件: Exception.cs 项目: x335/WootzJs
        public virtual Exception InternalInit(JsError error)
        {
            if (stacktrace != null)
                return this;

            stacktrace = error.stack;
            toStringSaved = toString();
            return this;
        }
示例#2
0
 public JsException(JsError nativeException)
 {
     this.nativeException = nativeException;
 }
示例#3
0
 public override Exception InternalInit(JsError error)
 {
     return base.InternalInit(nativeException);
 }