Tai Truong
fix readme
d202ada
raw
history blame contribute delete
193 Bytes
class NoComponentInstanceError(Exception):
def __init__(self, vertex_id: str):
message = f"Vertex {vertex_id} does not have a component instance."
super().__init__(message)