protected override void InnerRemoveVariable(string variableName)
 {
     try
     {
         _jsEngine.RemoveVariable(variableName);
     }
     catch (OriginalJsRuntimeException e)
     {
         throw ConvertMsieJsRuntimeExceptionToJsRuntimeException(e);
     }
 }
 protected override void InnerRemoveVariable(string variableName)
 {
     try
     {
         _jsEngine.RemoveVariable(variableName);
     }
     catch (OriginalException e)
     {
         throw WrapJsException(e);
     }
 }