sessiond: Split ust_registry_session into per-type classes
[lttng-tools.git] / src / common / exception.cpp
index 16e27e52afa35ebd4e144363772c839602995e78..cc0011405a69f37e17711e485e43a050c537295f 100644 (file)
@@ -41,3 +41,11 @@ lttng::posix_error::posix_error(const std::string &msg,
                msg + " " + format_throw_location(file_name, function_name, line_number))
 {
 }
+
+lttng::runtime_error::runtime_error(const std::string &msg,
+       const char *file_name,
+       const char *function_name,
+       unsigned int line_number) :
+       std::runtime_error(msg + " " + format_throw_location(file_name, function_name, line_number))
+{
+}
This page took 0.025556 seconds and 4 git commands to generate.