Files
directus/api/src/exceptions/collection-not-found.ts
2020-07-29 11:22:56 -04:00

8 lines
229 B
TypeScript

import { BaseException } from './base';
export class CollectionNotFoundException extends BaseException {
constructor(collection: string) {
super(`Collection "${collection}" doesn't exist.`, 404, 'COLLECTION_NOT_FOUND');
}
}