resource-watch/adapter-bigquery

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

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class DatasetNotValid extends Error {

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

}

module.exports = DatasetNotValid;