WSF
WsfException.hpp
Go to the documentation of this file.
1// ****************************************************************************
2// CUI
3//
4// The Advanced Framework for Simulation, Integration, and Modeling (AFSIM)
5//
6// Copyright 2003-2015 The Boeing Company. All rights reserved.
7//
8// The use, dissemination or disclosure of data in this file is subject to
9// limitation or restriction. See accompanying README and LICENSE for details.
10// ****************************************************************************
11
12#ifndef WSFEXCEPTION_HPP
13#define WSFEXCEPTION_HPP
14
15#include "wsf_export.h"
16
17#include "UtException.hpp"
18
21class WSF_EXPORT WsfException : public UtException
22{
23public:
24 WsfException(const std::string& aWhat) noexcept
25 : UtException(aWhat)
26 {
27 }
28
29 ~WsfException() override {}
30};
31
34{
35public:
37 : WsfException("WsfUnclonableException")
38 {
39 }
40 WsfUncloneableException(const std::string& aWhat)
41 : WsfException(aWhat)
42 {
43 }
44};
45
46#endif
#define WSF_EXPORT
Definition WsfXIO_Export.hpp:35
WsfException(const std::string &aWhat) noexcept
Definition WsfException.hpp:24
~WsfException() override
Definition WsfException.hpp:29
WsfUncloneableException(const std::string &aWhat)
Definition WsfException.hpp:40
WsfUncloneableException()
Definition WsfException.hpp:36
Copyrights Multiple, All Rights Reserved