gfw-api/gfw-geostore-api

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

Summary

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

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

}

module.exports = ErrorCreatingGist;