Prettier...
Some checks failed
continuous-integration/drone/pr Build is failing

This commit is contained in:
2023-05-24 10:33:06 -04:00
parent b8102fb291
commit da3f895777
5 changed files with 25 additions and 25 deletions

View File

@@ -1,9 +1,9 @@
import { Payload } from '../../types/Payload';
import { ServiceError } from './ServiceError';
import { Payload } from "../../types/Payload";
import { ServiceError } from "./ServiceError";
export class ApiError extends ServiceError {
constructor(message: string, debug?: Payload) {
super(message, debug);
this.name = 'ApiError';
this.name = "ApiError";
}
}

View File

@@ -1,9 +1,9 @@
import { Payload } from '../../types/Payload';
import { ServiceError } from './ServiceError';
import { Payload } from "../../types/Payload";
import { ServiceError } from "./ServiceError";
export class DatabaseError extends ServiceError {
constructor(message: string, debug?: Payload) {
super(message, debug);
this.name = 'DatabaseError';
this.name = "DatabaseError";
}
}

View File

@@ -1,4 +1,4 @@
import { Payload } from '../../types/Payload';
import { Payload } from "../../types/Payload";
export class ServiceError extends Error {
public env = process.env;
@@ -6,7 +6,7 @@ export class ServiceError extends Error {
constructor(message: string, debug?: Payload) {
super(message);
this.name = 'ServiceError';
this.name = "ServiceError";
this.debug = debug;
}
}

View File

@@ -1,4 +1,4 @@
import { Payload } from './Payload';
import { Payload } from "./Payload";
export interface ApiResponse<T = Payload> {
data?: T;