OPAL (Object Oriented Parallel Accelerator Library)
2024.2
OPAL
EarlyLeaveException.cpp
Go to the documentation of this file.
1
//
2
// Implements the member function of the EarlyLeaveException class.
3
//
4
// Copyright (c) 2008-2019
5
// Paul Scherrer Institut, Villigen PSI, Switzerland
6
// All rights reserved.
7
//
8
// OPAL is licensed under GNU GPL version 3.
9
//
10
11
#include "
Utilities/EarlyLeaveException.h
"
12
13
14
EarlyLeaveException::EarlyLeaveException
(
const
std::string &meth,
const
std::string &msg):
15
ClassicException
(meth, msg)
16
{}
17
18
19
EarlyLeaveException::EarlyLeaveException
(
const
EarlyLeaveException
&rhs):
20
ClassicException
(rhs)
21
{}
22
23
24
EarlyLeaveException::~EarlyLeaveException
()
25
{}
EarlyLeaveException.h
ClassicException::ClassicException
ClassicException(const std::string &meth, const std::string &msg)
The usual constructor.
Definition
ClassicException.cpp:28
EarlyLeaveException::EarlyLeaveException
EarlyLeaveException()=delete
EarlyLeaveException::EarlyLeaveException
EarlyLeaveException(const std::string &meth, const std::string &msg)
Definition
EarlyLeaveException.cpp:14
EarlyLeaveException::~EarlyLeaveException
virtual ~EarlyLeaveException()
Definition
EarlyLeaveException.cpp:24