quic/qbox
Loading...
Searching...
No Matches
qemu-components
common
include
exceptions.h
1
/*
2
* This file is part of libqbox
3
* Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All Rights Reserved.
4
* Author: GreenSocs 2021
5
*
6
* SPDX-License-Identifier: BSD-3-Clause
7
*/
8
9
#ifndef LIBQBOX_QEMU_EXCEPTIONS_H_
10
#define LIBQBOX_QEMU_EXCEPTIONS_H_
11
12
#include <stdexcept>
13
14
class
QboxException
:
public
std::runtime_error
15
{
16
public
:
17
QboxException
(
const
char
*
what
): std::runtime_error(
what
) {}
18
19
virtual
~QboxException
()
throw
() {}
20
};
21
22
#endif
QboxException
Definition
exceptions.h:15
QemuTargetSocket
Definition
target.h:160
Generated by
1.9.8