frankthelen/rools

View on GitHub
src/RuleError.js

Summary

Maintainability
A
0 mins
Test Coverage
class RuleError extends Error {
  constructor(message, error) {
    super(message);
    this.cause = error;
  }
}

module.exports = RuleError;