gfw-api/fw-contextual-layers

View on GitHub
app/src/TileNotFoundError.js

Summary

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

    constructor(message = '', ...args) {
        super(message, ...args);
        this.message = `TileNotFound: ${message}`;
    }

}

module.exports = TileNotFoundError;