all repos — stealth-developers @ e9cebecae99c7f4cd8ba9e4c42d7b1fb84782a53

apps/bot/src/lib/error.ts (view raw)

 1
 2
 3
 4
 5
 6
export class PublicError extends Error {
	constructor(message: string) {
		super(message);
		this.name = "PublicError";
	}
}