[client-app] Fix references to RetryableError imports

Summary: See title

Test Plan: manual

Reviewers: spang, mark

Reviewed By: mark

Differential Revision: https://phab.nylas.com/D4292
This commit is contained in:
Juan Tejada 2017-03-29 15:46:31 -07:00
parent caac7cd247
commit c7e4c2bb87
2 changed files with 3 additions and 6 deletions

View file

@ -1,9 +1,6 @@
const _ = require('underscore');
const {
RetryableError,
IMAPConnectionNotReadyError,
} = require('./imap-errors');
const {RetryableError} = require('./errors')
const {IMAPConnectionNotReadyError} = require('./imap-errors');
/*
IMAPBox uses Proxy to wrap the "box" exposed by node-imap. It provides higher-level

View file

@ -5,9 +5,9 @@ import EventEmitter from 'events';
import CommonProviderSettings from 'imap-provider-settings';
import PromiseUtils from './promise-utils';
import IMAPBox from './imap-box';
import {RetryableError} from './errors'
import {
convertImapError,
RetryableError,
IMAPConnectionTimeoutError,
IMAPConnectionNotReadyError,
IMAPConnectionEndedError,