gfw-api/gfw-umd-forest-api

View on GitHub
src/errors/notFound.ts

Summary

Maintainability
A
45 mins
Test Coverage
class NotFound extends Error {

    constructor(message: string) {
        super(message);
        this.name = 'NotFound';
        this.message = message;
    }

}

export default NotFound;