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