resource-watch/doc-executor

View on GitHub
app/src/errors/indexNotFound.js

Summary

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

    constructor(status, message) {
        super(message);
        this.status = status;
    }

}

module.exports = IndexNotFound;