diff options
author | ilanap <ilanap@amdocs.com> | 2018-01-08 15:50:18 +0200 |
---|---|---|
committer | Avi Gaffa <avi.gaffa@amdocs.com> | 2018-01-09 12:57:22 +0000 |
commit | 785dc1ea36c8c333d93d9f54cae252d141319bfc (patch) | |
tree | db9c35a871e5bf5cd6789b93d9c23a0e8f5f21d8 /openecomp-ui/src/nfvo-utils/ErrorResponseHandler.js | |
parent | 7476ddebf0b34cf4ebf4a3c64ff3163bc0b06058 (diff) |
Change variable names to catalog
Change-Id: Iaa4f2143840de47feaf25d110144cd762f6ff8ec
Issue-ID: SDC-887
Signed-off-by: ilanap <ilanap@amdocs.com>
Diffstat (limited to 'openecomp-ui/src/nfvo-utils/ErrorResponseHandler.js')
-rw-r--r-- | openecomp-ui/src/nfvo-utils/ErrorResponseHandler.js | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/openecomp-ui/src/nfvo-utils/ErrorResponseHandler.js b/openecomp-ui/src/nfvo-utils/ErrorResponseHandler.js index 146d5285d9..e7f37e3768 100644 --- a/openecomp-ui/src/nfvo-utils/ErrorResponseHandler.js +++ b/openecomp-ui/src/nfvo-utils/ErrorResponseHandler.js @@ -1,17 +1,17 @@ -/* - * Copyright © 2016-2017 European Support Limited +/*! + * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing + * permissions and limitations under the License. */ import store from 'sdc-app/AppStore.js'; import React from 'react'; @@ -29,7 +29,7 @@ function showVariablesInMessage(variables, msg) { return msg; } -function parseATTExceptionObject(responseJSON) { +function parseCatalogExceptionObject(responseJSON) { let title, msg; if (responseJSON.requestError && responseJSON.requestError.policyException) { title = 'Error: ' + responseJSON.requestError.policyException.messageId; @@ -57,7 +57,7 @@ function parseATTExceptionObject(responseJSON) { var errorResponseHandler = (error) => { let errorData; if (error.data) { - errorData = parseATTExceptionObject(error.data); + errorData = parseCatalogExceptionObject(error.data); } else { errorData = { |