SQLite error code
SQLITE_IOERR_DELETE_NOENT
SQLITE_IOERR_DELETE_NOENT is SQLite result code 5898, an extended code of SQLITE_IOERR.
| Result code | 5898 |
|---|---|
| Name | SQLITE_IOERR_DELETE_NOENT |
| Primary code | SQLITE_IOERR |
What it means
The SQLITE_IOERR_DELETE_NOENT error code is an extended error code for SQLITE_IOERR indicating that the xDelete method on the sqlite3_vfs object failed because the file being deleted does not exist.
Source: SQLite Result and Error Codes