mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-14 18:52:05 +03:00
748c664b78
closes #6976 - add maintenance mode when running migrations - refactor update/populate migrations
14 lines
374 B
JavaScript
14 lines
374 B
JavaScript
function DatabaseVersion(message, context, help) {
|
|
this.message = message;
|
|
this.stack = new Error().stack;
|
|
this.statusCode = 500;
|
|
this.errorType = this.name;
|
|
this.context = context;
|
|
this.help = help;
|
|
}
|
|
|
|
DatabaseVersion.prototype = Object.create(Error.prototype);
|
|
DatabaseVersion.prototype.name = 'DatabaseVersion';
|
|
|
|
module.exports = DatabaseVersion;
|