lib/src/orm/migrations/NothingToMigrateError.ts
garrettmills fcce28081b
All checks were successful
continuous-integration/drone/push Build is passing
AsyncPipe; table schemata; migrations; File logging
2021-07-25 09:15:01 -05:00

15 lines
364 B
TypeScript

import {ErrorWithContext} from '../../util'
/**
* Error thrown when the migrator is run, but no migrations need
* to be applied/rolled-back.
*/
export class NothingToMigrateError extends ErrorWithContext {
constructor(
message = 'There is nothing to migrate',
context?: {[key: string]: any},
) {
super(message, context)
}
}