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
|
<!DOCTYPE html>
<html>
<!-- Created by GNU Texinfo 7.1.1, https://www.gnu.org/software/texinfo/ -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>The try Statement (GNU Octave (version 10.3.0))</title>
<meta name="description" content="The try Statement (GNU Octave (version 10.3.0))">
<meta name="keywords" content="The try Statement (GNU Octave (version 10.3.0))">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="makeinfo">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link href="index.html" rel="start" title="Top">
<link href="Concept-Index.html" rel="index" title="Concept Index">
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
<link href="Statements.html" rel="up" title="Statements">
<link href="Continuation-Lines.html" rel="next" title="Continuation Lines">
<link href="The-unwind_005fprotect-Statement.html" rel="prev" title="The unwind_protect Statement">
<style type="text/css">
<!--
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
div.example {margin-left: 3.2em}
span:hover a.copiable-link {visibility: visible}
-->
</style>
<link rel="stylesheet" type="text/css" href="octave.css">
</head>
<body lang="en">
<div class="section-level-extent" id="The-try-Statement">
<div class="nav-panel">
<p>
Next: <a href="Continuation-Lines.html" accesskey="n" rel="next">Continuation Lines</a>, Previous: <a href="The-unwind_005fprotect-Statement.html" accesskey="p" rel="prev">The unwind_protect Statement</a>, Up: <a href="Statements.html" accesskey="u" rel="up">Statements</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html" title="Index" rel="index">Index</a>]</p>
</div>
<hr>
<h3 class="section" id="The-try-Statement-1"><span>10.9 The try Statement<a class="copiable-link" href="#The-try-Statement-1"> ¶</a></span></h3>
<a class="index-entry-id" id="index-try-statement"></a>
<a class="index-entry-id" id="index-catch"></a>
<a class="index-entry-id" id="index-end_005ftry_005fcatch"></a>
<p>The original form of a <code class="code">try</code> block looks like this:
</p>
<div class="example">
<div class="group"><pre class="example-preformatted">try
<var class="var">body</var>
catch
<var class="var">cleanup</var>
end_try_catch
</pre></div></div>
<p>where <var class="var">body</var> and <var class="var">cleanup</var> are both optional and may contain any
Octave expressions or commands. The statements in <var class="var">cleanup</var> are
only executed if an error occurs in <var class="var">body</var>.
</p>
<p>No warnings or error messages are printed while <var class="var">body</var> is executing.
If an error does occur during the execution of <var class="var">body</var>, <var class="var">cleanup</var>
can use the functions <code class="code">lasterr</code> or <code class="code">lasterror</code> to access the
text of the message that would have been printed, as well as its
identifier. The alternative form,
</p>
<div class="example">
<div class="group"><pre class="example-preformatted">try
<var class="var">body</var>
catch <var class="var">err</var>
<var class="var">cleanup</var>
end_try_catch
</pre></div></div>
<p>will automatically store the output of <code class="code">lasterror</code> in the structure
<var class="var">err</var>. See <a class="xref" href="Errors-and-Warnings.html">Errors and Warnings</a>, for more information about the
<code class="code">lasterr</code> and <code class="code">lasterror</code> functions.
</p>
</div>
</body>
</html>
|