CGEM BOSS
6.6.5.i
BESIII Offline Software System
Loading...
Searching...
No Matches
TooBigCountIssue.h
Go to the documentation of this file.
1
//Dear emacs, this is -*- c++ -*-
2
3
/**
4
* @file eformat/TooBigCountIssue.h
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
* @brief Describes an exception that happens when the total number of blocks
11
* I'm managing is bigger than the one I was asked to manage initially.
12
*/
13
14
#ifndef EFORMAT_TOOBIGCOUNTISSUE_H
15
#define EFORMAT_TOOBIGCOUNTISSUE_H
16
17
#include "
eformat/Issue.h
"
18
#include <stdint.h>
19
20
namespace
eformat
{
21
22
/**
23
* This exception is supposed to be thrown when the user is trying to add
24
* more blocks than the number of blocks I can handle.
25
*/
26
class
TooBigCountIssue
:
public
eformat::Issue
{
27
28
public
:
//interface
29
30
/**
31
* Builds a new size-check exception
32
*
33
* @param context The Error Reporting System context to be used to identify
34
* the spot where this issue was created
35
* @param severity The severity of this issue
36
* @param count The number of blocks I was asked to deal with
37
* @param maxcount The maximum number of blocks I can deal with
38
*/
39
TooBigCountIssue
(
const
ers::Context
& context,
ers::severity_t
severity
,
40
size_t
count
,
size_t
maxcount);
41
42
43
/**
44
* Destructor virtualisation
45
*/
46
virtual
~TooBigCountIssue
() throw() {}
47
48
/**
49
* The number of blocks I have to deal with
50
*/
51
size_t
count
()
const
;
52
53
/**
54
* The maximum number of blocks I can deal with
55
*/
56
size_t
max_count
()
const
;
57
58
};
59
60
}
61
62
/**
63
* Simplifies the use of this Issue
64
*
65
* @param count The number of blocks I was asked to deal with
66
* @param maxcount The maximum number of blocks I can deal with
67
*/
68
#define EFORMAT_TOO_BIG_COUNT(count, maxcount) \
69
eformat::TooBigCountIssue(ERS_HERE, ers::error, count, maxcount)
70
71
#endif
/* EFORMAT_TOOBIGCOUNTISSUE_H */
eformat::Issue
Definition
eformat/eformat-00-00-04/eformat/Issue.h:23
eformat::TooBigCountIssue
Definition
TooBigCountIssue.h:26
eformat::TooBigCountIssue::max_count
size_t max_count() const
Definition
TooBigCountIssue.cxx:36
eformat::TooBigCountIssue::count
size_t count() const
Definition
TooBigCountIssue.cxx:31
eformat::TooBigCountIssue::TooBigCountIssue
TooBigCountIssue(const ers::Context &context, ers::severity_t severity, size_t count, size_t maxcount)
Definition
TooBigCountIssue.cxx:21
eformat::TooBigCountIssue::~TooBigCountIssue
virtual ~TooBigCountIssue()
Definition
TooBigCountIssue.h:46
ers::Context
Source context for Issue.
Definition
Context.h:42
ers::Issue::severity
severity_t severity() const
severity_t of the issue
Definition
ers/ers-00-00-03/src/Issue.cxx:602
Issue.h
Defines the base eformat Issue.
eformat
Definition
BadVersionIssue.h:20
ers::severity_t
enum ers::_severity_t severity_t
6.6.5.i
Event
eformat
eformat-00-00-04
eformat
TooBigCountIssue.h
Generated by
1.12.0