Skip to content

Latest commit

 

History

History
82 lines (52 loc) · 2.72 KB

File metadata and controls

82 lines (52 loc) · 2.72 KB
title NativeScriptError
category Interfaces
titleTemplate API - NativeScript
breadcrumbs
name href
API Index
/api/
name href
Interfaces
/api/#summary-Interfaces
name
NativeScriptError
layout api
seo
description
An extended JavaScript Error which will have the nativeError property initialized in case the error is caused by executing platform-specific code.
<script setup lang="ts"> import { provide } from "vue"; import API_DATA from "./NativeScriptError.data.json"; provide('API_DATA', API_DATA); </script>
interface NativeScriptError extends Error {
  nativeException: any;
  stack: string;
  stackTrace: string;
}

Summary

Properties

<template #title>

nativeException

<template #title>

stack

<template #title>

stackTrace