private onError()

in src/app/webserver/central-certificates/central-certificate.service.ts [95:105]


    private onError(e) {
        if (e.status && e.status == 400 && e.name == 'identity') {
            this._notificationService.warn("Unable to connect to the central certificate store using the given credentials");
        }
        else if (e.status && e.status == 403 && e.name == 'physical_path') {
            this._notificationService.warn("Access to the specified physical path is not allowed");
        }
        else if (e.status && e.status == 404 && e.name == 'physical_path') {
            this._notificationService.warn("The specified directory could not be found");
        }
    }