--- title: NativeScriptError category: Interfaces titleTemplate: 'API - NativeScript' breadcrumbs: - name: 'API Index' href: '/api/' - name: 'Interfaces' href: '/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." ---
interface NativeScriptError extends Error {
  nativeException: any;
  stack: string;
  stackTrace: string;
}
## Summary ## Properties