resource-watch/doc-executor

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

Summary

Maintainability
A
0 mins
Test Coverage
F
33%
class ConverterNotSupported extends Error {

    constructor(status, message) {
        super(message);
        this.status = status;
    }

}

module.exports = ConverterNotSupported;