mirror of
https://gitlab.com/mobicoop/v3/service/matcher.git
synced 2026-01-01 10:12:40 +00:00
12 lines
244 B
TypeScript
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;
|
|
}
|
|
}
|