missingField: (fieldName) => {
    const code = 'ERROR_ACCOUNT_FIELD_NOT_FOUND';
    const status = 400;
    const error = new Error(`The required field ${fieldName} was not found.`); // eslint-disable-line max-len
    return Object.assign(error, {code, status});