Files
matcher/src/modules/geography/exceptions/geography.exception.ts
2023-05-12 16:23:42 +02:00

12 lines
244 B
TypeScript

export class GeographyException implements Error {
name: string;
code: number;
message: string;
constructor(code: number, message: string) {
this.name = 'GeographyException';
this.code = code;
this.message = message;
}
}