VPTissue Reference Manual
Exception.h
Go to the documentation of this file.
1 #ifndef INC_UTIL_EXCEPTION_H
2 #define INC_UTIL_EXCEPTION_H
3 /*
4  * Copyright 2011-2016 Universiteit Antwerpen
5  *
6  * Licensed under the EUPL, Version 1.1 or as soon they will be approved by
7  * the European Commission - subsequent versions of the EUPL (the "Licence");
8  * You may not use this work except in compliance with the Licence.
9  * You may obtain a copy of the Licence at: http://ec.europa.eu/idabc/eupl5
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the Licence is distributed on an "AS IS" basis,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the Licence for the specific language governing
15  * permissions and limitations under the Licence.
16  */
21 #include <string>
22 #include <stdexcept>
23 
24 namespace SimPT_Sim {
25 namespace Util {
26 
28 class Exception: public std::exception
29 {
30 public:
32  virtual ~Exception() noexcept {}
33 
35  Exception(std::string const& m) : m_msg(m) { }
36 
38  virtual const char* what() const noexcept { return m_msg.c_str(); }
39 
40 private:
41  std::string m_msg;
42 };
43 
44 } // namespace
45 } // namespace
46 
47 #endif // end-of-include-guard
48 
virtual ~Exception() noexcept
Virtual destructor for abstract class.
Definition: Exception.h:32
virtual const char * what() const noexcept
Return error message.
Definition: Exception.h:38
Extremely simple Exception root class.
Definition: Exception.h:28
Namespace for the core simulator.
Exception(std::string const &m)
Constructor initializes message for the exception.
Definition: Exception.h:35