コード例 #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
ファイル: JsException.cs プロジェクト: x335/WootzJs
 public JsException(JsError nativeException)
 {
     this.nativeException = nativeException;
 }
コード例 #3
0
ファイル: JsException.cs プロジェクト: x335/WootzJs
 public override Exception InternalInit(JsError error)
 {
     return base.InternalInit(nativeException);
 }