gfw-api/gfw-area

View on GitHub
app/src/errors/geostore-not-found.error.js

Summary

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

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

}

module.exports = GeostoreNotFound;