hc99's picture
Add files using upload-large-folder tool
b40c49c verified
raw
history blame
334 Bytes
"""
Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: MIT-0
"""
from __future__ import annotations
class ResourceNotFoundError(Exception):
def __init__(self, resource_type: str, region: str):
super().__init__(f"Resource type '{resource_type}' is not found in '{region}'")