onValidate({ config }) {
        const { maxLoop } = config
        if (Number.isInteger(maxLoop) === false) {
            throw new Error(`Limiter.maxLoop is not a valid number, got: ${maxLoop}`)
        }