NaturalIntelligence/Stubmatic

View on GitHub
lib/ApplicationError.js

Summary

Maintainability
A
0 mins
Test Coverage
class ApplicationError extends Error {
    constructor(message, response) {
      super(message);
      this.name = "ApplicationError"; 
      this.response = response;
    }
  }
  

  module.exports = ApplicationError;