zazoomauro/node-dependency-injection

View on GitHub
lib/Exception/ConfigurationFileNotFoundException.js

Summary

Maintainability
A
1 hr
Test Coverage
A
100%
export default class ConfigurationFileNotFoundException extends Error {
  /**
   * @param {string} path
   */
  constructor (path) {
    super(`File ${path} not found`)
    this.name = 'ConfigurationFileNotFoundException'
    this.stack = (new Error()).stack
  }
}