Source code for mqt.debugger.dap.messages.terminated_dap_event

# Copyright (c) 2024 - 2026 Chair for Design Automation, TUM
# Copyright (c) 2025 - 2026 Munich Quantum Software Company GmbH
# All rights reserved.
#
# SPDX-License-Identifier: MIT
#
# Licensed under the MIT License

"""Represents the 'terminated' DAP event."""

from __future__ import annotations

from .dap_event import DAPEvent


[docs] class TerminatedDAPEvent(DAPEvent): """Represents the 'terminated' DAP event.""" event_name = "terminated" def __init__(self) -> None: """Initializes the 'TerminatedDAPEvent' instance.""" super().__init__()
[docs] def validate(self) -> None: """Validates the 'TerminatedDAPEvent' instance."""