Example #1
0
        public virtual Exception InternalInit(JsError error)
        {
            if (stacktrace != null)
                return this;

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