aboutsummaryrefslogtreecommitdiff
path: root/src/app/messages.service.ts
blob: 6d1840534a341ed98c5c686bbcccebd769eb521a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { Injectable } from '@angular/core';

@Injectable({
  providedIn: 'root'
})
export class MessagesService {

  private error:string;

  constructor() { }

  getError() :string{
    return this.error;
  }

  pushError(errorText:string){
    this.error = errorText;
  }

  dismissError(){
    this.error='';
  }
}