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

This commit is contained in:
2023-05-24 10:46:41 -04:00
parent da3f895777
commit b72721dc69
8 changed files with 57 additions and 30 deletions

View File

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