BOSS 6.6.4.p01
BESIII Offline Software System
Loading...
Searching...
No Matches
WrongSizeIssue.cxx
Go to the documentation of this file.
1//Dear emacs, this is -*- c++ -*-
2
3/**
4 * @file WrongSizeIssue.cxx
5 * @author <a href="mailto:[email protected]">Andre DOS ANJOS</a>
6 * $Author: zhangy $
7 * $Revision: 1.1.1.1 $
8 * $Date: 2009/06/19 07:35:41 $
9 *
10 * Implements the size-check issue
11 */
12
14
15/**
16 * Strings to identify keys in ERS
17 */
18static const char* SIZE_KEY = "The informed (wrong) size value";
19
21 ers::severity_t severity,
22 uint32_t size)
23 : eformat::Issue(context,severity)
24{
25 set_value(SIZE_KEY, size);
26 finish_setup("Informed fragment size is wrong");
27}
28
30{
31 return get_int_value(SIZE_KEY);
32}
33
When size checks do not match, this exception must be thrown.
WrongSizeIssue(const ers::Context &context, ers::severity_t severity, uint32_t size)
Source context for Issue.
Definition: Context.h:42
void set_value(const std::string &key, uint8_t value)
Sets a value 8 bit unsigned.
void finish_setup(const std::string &message)
Finishes the setup of the Issue.
enum ers::_severity_t severity_t