NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
exception.hpp File Reference
#include "ndn-cxx/detail/common.hpp"
#include <cerrno>
#include <boost/exception_ptr.hpp>
#include <boost/exception/enable_current_exception.hpp>
#include <boost/exception/enable_error_info.hpp>
#include <boost/exception/errinfo_errno.hpp>
#include <boost/exception/errinfo_nested_exception.hpp>
Include dependency graph for exception.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

 ndn
 Copyright (c) 2011-2015 Regents of the University of California.
 
 ndn::exception
 

Macros

#define NDN_THROW(e)
 
#define NDN_THROW_ERRNO(e)   NDN_THROW(e) << boost::errinfo_errno(errno)
 
#define NDN_THROW_NESTED(e)   NDN_THROW(e) << boost::errinfo_nested_exception(boost::current_exception())
 

Macro Definition Documentation

◆ NDN_THROW

#define NDN_THROW (   e)
Value:
throw boost::enable_current_exception(boost::enable_error_info(e)) \
<< boost::throw_file(__FILE__) \
<< boost::throw_line(__LINE__) \
<< boost::throw_function(__func__) \
NDN_DETAIL_THROW_STACKTRACE

Definition at line 62 of file exception.hpp.

◆ NDN_THROW_ERRNO

#define NDN_THROW_ERRNO (   e)    NDN_THROW(e) << boost::errinfo_errno(errno)

Definition at line 69 of file exception.hpp.

◆ NDN_THROW_NESTED

#define NDN_THROW_NESTED (   e)    NDN_THROW(e) << boost::errinfo_nested_exception(boost::current_exception())

Definition at line 72 of file exception.hpp.