all repos — stealth-developers @ 70413b495b9134bcec2d716c0de27cce778ede81

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