Use compiler-agnostic defines to silence warning
[lttng-tools.git] / src / bin / lttng / exception.cpp
... / ...
CommitLineData
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#include "exception.hpp"
9
10#include <common/format.hpp>
11#include <common/utils.hpp>
12
13#include <sstream>
14
15lttng::cli::no_default_session_error::no_default_session_error(
16 const lttng::source_location& location) :
17 runtime_error(fmt::format("No default session found in `{}/.lttngrc`",
18 utils_get_home_dir() ?: "LTTNG_HOME"),
19 location)
20{
21}
This page took 0.023468 seconds and 5 git commands to generate.