forked from Automattic/mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
closes Automattic#1071
- Loading branch information
Showing
3 changed files
with
34 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 1,31 @@ | ||
|
||
/*! | ||
* Module dependencies. | ||
*/ | ||
|
||
var MongooseError = require('../error'); | ||
|
||
/** | ||
* Version Error constructor. | ||
* | ||
* @inherits MongooseError | ||
* @api private | ||
*/ | ||
|
||
function VersionError () { | ||
MongooseError.call(this, 'No matching document found.'); | ||
Error.captureStackTrace(this, arguments.callee); | ||
this.name = 'VersionError'; | ||
}; | ||
|
||
/*! | ||
* Inherits from MongooseError. | ||
*/ | ||
|
||
VersionError.prototype.__proto__ = MongooseError.prototype; | ||
|
||
/*! | ||
* exports | ||
*/ | ||
|
||
module.exports = VersionError; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters