Source code for reV.utilities.exceptions
# -*- coding: utf-8 -*-
"""
Custom Exceptions and Errors for reV
"""
[docs]class CollectionRuntimeError(HandlerRuntimeError):
"""
RuntimeError for collection handler.
"""
[docs]class EmptySupplyCurvePointError(SupplyCurveError):
"""
Execution error for SAM simulations
"""
[docs]class NearestNeighborError(Exception):
"""
Execution error for bad nearest neighbor mapping results.
"""
[docs]class OffshoreWindInputWarning(Warning):
"""
Warning for potentially dangerous offshore wind inputs
"""