From c965f41defc6308e82cb77832821c0ff28fb4902 Mon Sep 17 00:00:00 2001 From: Joaco2603 Date: Sun, 31 Aug 2025 21:52:54 -0600 Subject: [PATCH] feature/nft-domain-implement --- src/modules/nft/domain/exceptions/ntf.exceptions.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/modules/nft/domain/exceptions/ntf.exceptions.ts diff --git a/src/modules/nft/domain/exceptions/ntf.exceptions.ts b/src/modules/nft/domain/exceptions/ntf.exceptions.ts new file mode 100644 index 0000000..0b5aba3 --- /dev/null +++ b/src/modules/nft/domain/exceptions/ntf.exceptions.ts @@ -0,0 +1,8 @@ +import { DomainException } from "@/modules/shared/domain/exceptions/domain.exception"; + + +export class NTFException extends DomainException { + constructor(message: string) { + super(message); + } +} \ No newline at end of file