resource-watch/doc-executor

View on GitHub
app/src/errors/elastic.error.js

Summary

Maintainability
A
35 mins
Test Coverage
F
0%
class ElasticError extends Error {

    constructor(message) {
        super(message);
        this.name = 'ElasticError';
        this.message = message;
    }

}

module.exports = ElasticError;