resource-watch/adapter-earth-engine

View on GitHub
adapterearthengine/errors.py

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class Error(Exception):

    def __init__(self, message):
        self.message = message


class SqlFormatError(Error):
    pass


class GEEQueryError(Error):
    pass


class GeojsonNotFound(Error):
    pass


class DatasetNotFound(Error):
    pass