Belle II Software
development
DBHandlerException.cc
1
/**************************************************************************
2
* basf2 (Belle II Analysis Software Framework) *
3
* Author: The Belle II Collaboration *
4
* *
5
* See git log for contributors and copyright holders. *
6
* This file is licensed under LGPL-3.0, see LICENSE.md. *
7
**************************************************************************/
8
#include "daq/slc/database/DBHandlerException.h"
9
10
#include <cstdarg>
11
#include <cstdio>
12
13
using namespace
Belle2
;
14
15
DBHandlerException::DBHandlerException(
const
std::string& format, ...)
16
{
17
va_list ap;
18
char
ss[1024 * 100];
19
va_start(ap, format);
20
vsnprintf(ss,
sizeof
(ss), format.c_str(), ap);
21
va_end(ap);
22
m_comment = ss;
23
}
24
Belle2
Abstract base class for different kinds of events.
Definition:
MillepedeAlgorithm.h:17
daq
slc
database
src
DBHandlerException.cc
Generated on Fri Nov 8 2024 02:35:38 for Belle II Software by
1.9.6