1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
<!DOCTYPE html
PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- saved from url=(0014)about:internet -->
<html xmlns:MSHelp="http://www.microsoft.com/MSHelp/" lang="en-us" xml:lang="en-us"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="DC.Type" content="reference">
<meta name="DC.Title" content="captured_exception">
<meta name="DC.subject" content="captured_exception">
<meta name="keywords" content="captured_exception">
<meta name="DC.Relation" scheme="URI" content="../../reference/exceptions.htm">
<meta name="DC.Relation" scheme="URI" content="tbb_exception.htm">
<meta name="DC.Format" content="XHTML">
<meta name="DC.Identifier" content="captured_exception">
<meta name="DC.Language" content="en-US">
<link rel="stylesheet" type="text/css" href="../../intel_css_styles.css">
<title>captured_exception</title>
</head>
<body id="captured_exception">
<!-- ==============(Start:NavScript)================= -->
<script src="..\..\NavScript.js" language="JavaScript1.2" type="text/javascript"></script>
<script language="JavaScript1.2" type="text/javascript">WriteNavLink(2);</script>
<!-- ==============(End:NavScript)================= -->
<a name="captured_exception"><!-- --></a>
<h1 class="topictitle1">captured_exception</h1>
<div>
<div class="section"><h2 class="sectiontitle">Summary</h2>
<p>Class used by Intel® Threading Building Blocks (Intel® TBB) to capture an
approximation of an exception.
</p>
</div>
<div class="section"><h2 class="sectiontitle">Syntax</h2>
<pre>class captured_exception;</pre>
</div>
<div class="section"><h2 class="sectiontitle">Header</h2>
<pre>#include "tbb/tbb_exception.h"</pre>
</div>
<div class="section"><h2 class="sectiontitle">Description</h2>
<p>When a task throws an exception, sometimes Intel®
TBB converts the exception to a
<samp class="codeph">captured_exception</samp> before propagating it. The
conditions for conversion are described in Section Exceptions.
</p>
</div>
<div class="section"><h2 class="sectiontitle">Members</h2>
<pre>namespace tbb {
class captured_exception: public tbb_exception {
captured_exception(const captured_exception& src);
captured_exception(const char* name, const char* info);
~captured_exception() throw();
captured_exception& operator=(const captured_exception&);
captured_exception* move() throw();
void destroy() throw();
void throw_self();
const char* name() const throw();
const char* what() const throw();
};
}</pre>
<div class="tablenoborder"><table cellpadding="4" summary="" frame="border" border="1" cellspacing="0" rules="all"><span class="tabledesc">The following table provides information on the additions that
<samp class="codeph">captured_exception</samp> makes to
<samp class="codeph">tbb_exception</samp>. Section
<samp class="codeph">tbb_exception</samp> describes the rest of the interface.
</span><thead align="left">
<tr>
<th class="cellrowborder" valign="top" width="33.89830508474576%" id="d62537e85">Member
</th>
<th class="cellrowborder" valign="top" width="66.10169491525423%" id="d62537e88">Description
</th>
</tr>
</thead>
<tbody>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d62537e85 "><span class="keyword">captured_exception( const char*
name, const char* info )</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d62537e88 ">
<p>Constructs a
<samp class="codeph">captured_exception</samp> with the specified
<samp class="codeph"><em>name</em></samp> and
<samp class="codeph"><em>info</em></samp>.
</p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="familylinks">
<div class="parentlink"><strong>Parent topic:</strong> <a href="../../reference/exceptions.htm">Exceptions</a></div>
</div>
<div class="See Also">
<h2>See Also</h2>
<div class="linklist">
<div><a href="tbb_exception.htm">tbb_exception
</a></div></div>
</div>
</body>
</html>
|