---
layout: default-layout
needAutoGenerateSidebar: true
needGenerateH3Content: true
noTitleIndex: true
title: Dynamsoft Document Viewer API Reference - Interface VError
keywords: Documentation, Dynamsoft Document Viewer, API Reference, Interface VError
breadcrumbText: Interface VError
description: Dynamsoft Document Viewer Documentation API Reference Interface VError Page
permalink: /api/interface/verror.html
---

# VError

## Syntax

```typescript
interface VError {
    code: number;
    message: string;
    details?: string[];
}
```

## Attributes

### code

The error code. Please refer to [Error List](https://www.dynamsoft.com/document-viewer/docs/api/errorlist.md) for the whole error codes DDV has.

### message

The error message.

### details

The detailed error info.

## Related

- [`DDVError`](https://www.dynamsoft.com/document-viewer/docs/api/interface/ddverror.md)