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.
28 lines
467 B
28 lines
467 B
/*!
|
|
* Module dependencies.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const MongooseError = require('./');
|
|
|
|
|
|
class MissingSchemaError extends MongooseError {
|
|
/*!
|
|
* MissingSchema Error constructor.
|
|
*/
|
|
constructor() {
|
|
super('Schema hasn\'t been registered for document.\n'
|
|
+ 'Use mongoose.Document(name, schema)');
|
|
}
|
|
}
|
|
|
|
Object.defineProperty(MissingSchemaError.prototype, 'name', {
|
|
value: 'MongooseError'
|
|
});
|
|
|
|
/*!
|
|
* exports
|
|
*/
|
|
|
|
module.exports = MissingSchemaError;
|
|
|