sessiond: introduce ltt_session::locked_ref look-up functions
[lttng-tools.git] / src / common / exception.cpp
index 219e80fb18053ef8167e1d5d975f4f351f90370d..50520c55cfd177eff7e8116f500b91438550ae54 100644 (file)
@@ -32,6 +32,13 @@ lttng::runtime_error::runtime_error(const std::string& msg,
 {
 }
 
+lttng::allocation_failure::allocation_failure(const std::string& msg,
+std::size_t allocation_size_,
+                                           const lttng::source_location& location) :
+       lttng::runtime_error(msg, location), allocation_size(allocation_size_)
+{
+}
+
 lttng::unsupported_error::unsupported_error(const std::string& msg,
                                            const lttng::source_location& location) :
        lttng::runtime_error(msg, location)
This page took 0.022623 seconds and 4 git commands to generate.