sessiond: open_packets: use user_space_consumer_channel_keys util
[lttng-tools.git] / src / bin / lttng / exception.hpp
CommitLineData
e1b89bf0
JG
1/*
2 * Copyright (C) 2024 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-only
5 *
6 */
7
8#ifndef LTTNG_CLI_EXCEPTION_H
9#define LTTNG_CLI_EXCEPTION_H
10
11#include <common/exception.hpp>
12
13#include <lttng/lttng-error.h>
14
15#include <stdexcept>
16#include <string>
17
a0a4f314
JG
18#define LTTNG_THROW_CLI_NO_DEFAULT_SESSION() \
19 throw lttng::cli::no_default_session_error(LTTNG_SOURCE_LOCATION())
e1b89bf0
JG
20
21namespace lttng {
22namespace cli {
23class no_default_session_error : public runtime_error {
24public:
9f4d1ef3 25 explicit no_default_session_error(const lttng::source_location& source_location);
e1b89bf0
JG
26};
27} /* namespace cli */
28}; /* namespace lttng */
29
30#endif /* LTTNG_CLI_EXCEPTION_H */
This page took 0.043989 seconds and 4 git commands to generate.