gfw-api/gfw-geostore-api

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

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class GeoJSONNotFound extends Error {

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

}

module.exports = GeoJSONNotFound;