b4nst/stream-mock

View on GitHub
src/helpers/Warning.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * @module helpers
 */
export enum WARNING_TYPES {
  DEPRECATED = 'DeprecationWarning'
}

export default class Warning extends Error {
  public code?: string;

  constructor(msg: string, name: WARNING_TYPES, code: string) {
    super(msg);
    this.name = name;
    this.code = code;
  }
}