Skip to content

Commit 8a84300

Browse files
committed
fix: adjust import of exception in MongoDriver
1 parent 6a3da5a commit 8a84300

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@secjs/database",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "Handle your application database with factories, seeders and query builder in Node.js",
55
"license": "MIT",
66
"author": "João Lenon <lenon@secjs.com.br>",

src/Drivers/MongoDriver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import { InternalServerException } from '@secjs/exceptions'
2020
import { DriverContract } from '../Contracts/DriverContract'
2121
import { Is, paginate, PaginatedResponse } from '@secjs/utils'
2222
import { TableNotSetException } from '../Exceptions/TableNotSetException'
23-
import { NotImplementedException } from 'src/Exceptions/NotImplementedException'
23+
import { NotImplementedException } from '../Exceptions/NotImplementedException'
2424
import { NullQueryBuilderException } from '../Exceptions/NullQueryBuilderException'
2525

2626
export class MongoDriver implements DriverContract {

0 commit comments

Comments
 (0)