export default class edoTypeError extends Error {
	constructor (msg: string) {
		super(msg);
		this.name = "edoTypeError";
	}
}