All files / services error.ts

77.78% Statements 14/18
46.15% Branches 6/13
71.43% Functions 5/7
87.5% Lines 14/16
1 2 3 4 5 6 7  9x 9x     9x 9x
export abstract class BaseError extends Error {
  constructor(msg: string) {
    super(msg);
    this.message = msg;
  }
}