resource-watch/rw_metadata

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

Summary

Maintainability
A
35 mins
Test Coverage
F
25%

class MetadataNotFound extends Error {

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

}

module.exports = MetadataNotFound;