accountNotFound: (uuid) => {
    const code = 'ERROR_ACCOUNT_NOT_FOUND';
    const status = 404;
    const error = new Error(`The account with UUID ("${uuid}") could not be found.`); // eslint-disable-line max-len
    return Object.assign(error, {code, status});