matcher/old/modules/geography/exceptions/geography.exception.ts

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;
}
}