Home Reference Source

src/errors/NotInitializedError.ts

export class NotInitializedError extends Error {
	constructor(message: string) {
		super(message);
		this.name = 'NotInitializedError';
	}
}