aboutsummaryrefslogtreecommitdiff
path: root/util/error.ts
blob: 1e9d6eb31048721cec72b4569128d46e3770f599 (plain)
1
2
3
4
5
6
7
export default class YomikunError extends Error {
	constructor(message = "", ...args: any) {
		super(message, ...args);
		this.message = message;
		this.name = "YomikunError";
	}
}