resource-watch/layer

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

Summary

Maintainability
A
35 mins
Test Coverage
F
0%

class ProviderTypeNotValid extends Error {

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

}

module.exports = ProviderTypeNotValid;