Class: MongoError

MongoError

Creates a new MongoError

new MongoError(message)

Name Type Description
message Error | string | object

The error message

Properties:
Name Type Description
message string

The error message

stack string

The error call stack

Extends

  • Error

Methods

staticMongoError.create(options){MongoError}

Creates a new MongoError object

Name Type Description
options Error | string | object

The options used to create the error.

Deprecated
  • Use `new MongoError()` instead.
    Returns:
    MongoError instance

    hasErrorLabel(label){boolean}

    Checks the error to see if it has an error label

    Name Type Description
    label string

    The error label to check for

    Returns:
    true if the error has the provided error label