Belle II Software
release-05-01-25
DynamicLoadException.cc
1
#include "daq/slc/system/DynamicLoadException.h"
2
3
#include <cstdarg>
4
#include <cstdio>
5
6
using namespace
Belle2
;
7
8
DynamicLoadException::DynamicLoadException(
const
std::string& format, ...)
9
{
10
va_list ap;
11
char
ss[1024 * 100];
12
va_start(ap, format);
13
vsnprintf(ss,
sizeof
(ss), format.c_str(), ap);
14
va_end(ap);
15
m_comment = ss;
16
}
17
Belle2
Abstract base class for different kinds of events.
Definition:
MillepedeAlgorithm.h:19
daq
slc
system
src
DynamicLoadException.cc
Generated on Fri Nov 5 2021 03:50:16 for Belle II Software by
1.8.17