Project

General

Profile

1 61381 k.triantaf
export class ErrorCodes {
2
  public LOADING = 0;
3
  public DONE = 1;
4
  public NONE = 2;
5
  public ERROR = 3;
6
  public NOT_AVAILABLE = 4;
7
  public OUT_OF_BOUND = 5;
8
  public NOT_FOUND = 6;
9
  public NOT_SAVED = 7;
10
  public FORBIDDEN = 8;
11
}