You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iotcat 74338fbb93 auto update 5 years ago
..
.npmignore auto update 5 years ago
.travis.yml auto update 5 years ago
LICENSE.md auto update 5 years ago
README.md auto update 5 years ago
errors.js auto update 5 years ago
package.json auto update 5 years ago
test.js auto update 5 years ago

README.md

level-errors

LevelDB Logo

Error module for LevelUP

Build Status Greenkeeper badge

Usage

var levelup = require('levelup')
var errors = levelup.errors

levelup('./db', { createIfMissing: false }, function (err, db) {
  if (err instanceof errors.OpenError) {
    console.log('open failed because expected db to exist')
  }
})

API

.LevelUPError()

Generic error base class.

.InitializationError()

Error initializing the database, like when the database's location argument is missing.

.OpenError()

Error opening the database.

.ReadError()

Error reading from the database.

.WriteError()

Error writing to the database.

.NotFoundError()

Data not found error.

Has extra properties:

  • notFound: true
  • status: 404

.EncodingError()

Error encoding data.

Publishers

Copyright (c) 2012-2017 LevelUP contributors.

LevelUP is licensed under the MIT license. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE.md file for more details.