resource-watch/query

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

Summary

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

    constructor(message) {
        super(message);
        this.name = 'DatasetNotFound';
        this.message = message;
        this.status = 404;
    }

}

module.exports = DatasetNotFound;