Files
gridpilot.gg/packages/social/domain/errors/SocialDomainError.ts
2025-12-11 11:25:22 +01:00

8 lines
208 B
TypeScript

export class SocialDomainError extends Error {
readonly name: string = 'SocialDomainError';
constructor(message: string) {
super(message);
Object.setPrototypeOf(this, new.target.prototype);
}
}