moto/moto/ce/exceptions.py
2022-06-28 13:40:49 +00:00

10 lines
289 B
Python

"""Exceptions raised by the ce service."""
from moto.core.exceptions import JsonRESTError
class CostCategoryNotFound(JsonRESTError):
def __init__(self, ccd_id):
super().__init__(
"ResourceNotFoundException", f"No Cost Categories found with ID {ccd_id}"
)