2 // Copyright (c) 2020 Fraunhofer Institute for Applied Information Technology (FIT)
3 // Network Research Group (NET)
4 // Schloss Birlinghoven, 53754 Sankt Augustin, GERMANY
5 // Contact: support@wiback.org
7 // This file is part of the SENF code tree.
8 // It is licensed under the 3-clause BSD License (aka New BSD License).
9 // See LICENSE.txt in the top level directory for details or visit
10 // https://opensource.org/licenses/BSD-3-Clause
15 \brief Exception inline template implementation */
17 //#include "Exception.ih"
20 #include <boost/lexical_cast.hpp>
22 #define prefix_ inline
23 //-/////////////////////////////////////////////////////////////////////////////////////////////////
25 template <class Exc, class Arg>
26 prefix_ typename boost::enable_if< boost::is_convertible<Exc*,senf::ExceptionMixin*>, Exc & >::type
27 senf::operator<<(Exc const & exc, Arg const & arg)
29 const_cast<Exc &>(exc).append( boost::lexical_cast<std::string>(arg) );
30 return const_cast<Exc &>(exc);
33 //-/////////////////////////////////////////////////////////////////////////////////////////////////
34 // senf::WrapExcecption<BaseException>
36 template <class BaseException>
37 prefix_ senf::WrapException<BaseException> senf::make_WrapException(BaseException const & base)
39 return WrapException<BaseException>(base);
42 template <class BaseException>
43 prefix_ senf::WrapException<BaseException>::WrapException(BaseException const & base)
44 : ExceptionMixin(base.what()), BaseException(base)
47 template <class BaseException>
48 prefix_ senf::WrapException<BaseException>::~WrapException()
52 template <class BaseException>
53 prefix_ char const * senf::WrapException<BaseException>::what()
59 //-/////////////////////////////////////////////////////////////////////////////////////////////////
67 // c-file-style: "senf"
68 // indent-tabs-mode: nil
69 // ispell-local-dictionary: "american"
70 // compile-command: "scons -u test"