OPAL (Object Oriented Parallel Accelerator Library)
2024.2
OPAL
SwitcherError.h
Go to the documentation of this file.
1
#ifndef SWITCHERERROR_H
2
#define SWITCHERERROR_H
3
4
#include "
Utilities/ClassicException.h
"
5
6
#include <string>
7
8
class
SwitcherError
:
public
ClassicException
9
{
10
public
:
11
SwitcherError
(
const
std::string &meth,
const
std::string &msg);
12
13
SwitcherError
(
const
SwitcherError
&);
14
virtual
~SwitcherError
();
15
16
private
:
17
18
// Not implemented.
19
SwitcherError
();
20
};
21
22
#endif
ClassicException.h
ClassicException::ClassicException
ClassicException(const std::string &meth, const std::string &msg)
The usual constructor.
Definition
ClassicException.cpp:28
SwitcherError::SwitcherError
SwitcherError()
SwitcherError::SwitcherError
SwitcherError(const std::string &meth, const std::string &msg)
Definition
SwitcherError.cpp:3
SwitcherError::~SwitcherError
virtual ~SwitcherError()
Definition
SwitcherError.cpp:11