File size: 334 Bytes
b40c49c | 1 2 3 4 5 6 7 8 9 10 11 12 | """
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}'")
|