mirror of
https://github.com/twentyhq/twenty
synced 2026-04-21 13:37:22 +00:00
7 lines
240 B
TypeScript
7 lines
240 B
TypeScript
import { CustomException } from 'src/utils/custom-exception';
|
|
|
|
export class DataSourceException extends CustomException<DataSourceExceptionCode> {}
|
|
|
|
export enum DataSourceExceptionCode {
|
|
DATA_SOURCE_NOT_FOUND = 'DATA_SOURCE_NOT_FOUND',
|
|
}
|