mirror of
https://github.com/google/earthengine-api.git
synced 2025-12-08 19:26:12 +00:00
10 lines
155 B
Python
10 lines
155 B
Python
#!/usr/bin/env python
|
|
"""A simple exception for the EE library."""
|
|
|
|
|
|
|
|
|
|
class EEException(Exception):
|
|
"""A simple exception for the EE library."""
|
|
pass
|