private getErrorStatus()

in src/utils/request-manager.ts [108:110]


    private getErrorStatus(error: any, response?: superagent.Response): number {
        return (error && error.status) || (response && response.status) || RequestManager.ERROR_GATEWAY_TIMEOUT;
    }