removed error messages that were hard coded in myvnfs component. Used
the variables from app-constants file for these errors.
Issue-ID: APPC-1064
Change-Id: I5acffb29e18cd0b135ee4bf206c507db26b9765c
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
 import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
 import { NgProgress } from 'ngx-progressbar';
 import { NotificationsService } from 'angular2-notifications';
+import { appConstants } from '../../../constants/app-constants'
 
 @Component({ selector: 'app-myvnfs', templateUrl: './myvnfs.component.html', styleUrls: ['./myvnfs.component.css'] })
 export class MyvnfsComponent implements OnInit, OnDestroy {
                 ,
                 error => {
 
-                    this.nService.error("Error", "Error in connecting to APPC Server")
+                    this.nService.error(appConstants.errors.error, appConstants.errors.connectionError)
                 }
 
             );