blob: c18919ebdad31bd5c2c31d44bf41928aaf100b3f [file] [log] [blame]
<html lang="en">
<head>
<title>Ada Exceptions - Debugging with GDB</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="Debugging with GDB">
<meta name="generator" content="makeinfo 4.13">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="Ada.html#Ada" title="Ada">
<link rel="prev" href="Stopping-Before-Main-Program.html#Stopping-Before-Main-Program" title="Stopping Before Main Program">
<link rel="next" href="Ada-Tasks.html#Ada-Tasks" title="Ada Tasks">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<!--
Copyright (C) 1988-2019 Free Software Foundation, Inc.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
any later version published by the Free Software Foundation; with the
Invariant Sections being ``Free Software'' and ``Free Software Needs
Free Documentation'', with the Front-Cover Texts being ``A GNU Manual,''
and with the Back-Cover Texts as in (a) below.
(a) The FSF's Back-Cover Text is: ``You are free to copy and modify
this GNU Manual. Buying copies from GNU Press supports the FSF in
developing GNU and promoting software freedom.''
-->
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
pre.display { font-family:inherit }
pre.format { font-family:inherit }
pre.smalldisplay { font-family:inherit; font-size:smaller }
pre.smallformat { font-family:inherit; font-size:smaller }
pre.smallexample { font-size:smaller }
pre.smalllisp { font-size:smaller }
span.sc { font-variant:small-caps }
span.roman { font-family:serif; font-weight:normal; }
span.sansserif { font-family:sans-serif; font-weight:normal; }
--></style>
</head>
<body>
<div class="node">
<a name="Ada-Exceptions"></a>
<p>
Next:&nbsp;<a rel="next" accesskey="n" href="Ada-Tasks.html#Ada-Tasks">Ada Tasks</a>,
Previous:&nbsp;<a rel="previous" accesskey="p" href="Stopping-Before-Main-Program.html#Stopping-Before-Main-Program">Stopping Before Main Program</a>,
Up:&nbsp;<a rel="up" accesskey="u" href="Ada.html#Ada">Ada</a>
<hr>
</div>
<h5 class="subsubsection">15.4.10.6 Ada Exceptions</h5>
<p>A command is provided to list all Ada exceptions:
<a name="index-info-exceptions-1069"></a>
<dl><dt><code>info exceptions</code><dt><code>info exceptions </code><var>regexp</var><dd>The <code>info exceptions</code> command allows you to list all Ada exceptions
defined within the program being debugged, as well as their addresses.
With a regular expression, <var>regexp</var>, as argument, only those exceptions
whose names match <var>regexp</var> are listed.
</dl>
<p>Below is a small example, showing how the command can be used, first
without argument, and next with a regular expression passed as an
argument.
<pre class="smallexample"> (gdb) info exceptions
All defined Ada exceptions:
constraint_error: 0x613da0
program_error: 0x613d20
storage_error: 0x613ce0
tasking_error: 0x613ca0
const.aint_global_e: 0x613b00
(gdb) info exceptions const.aint
All Ada exceptions matching regular expression "const.aint":
constraint_error: 0x613da0
const.aint_global_e: 0x613b00
</pre>
<p>It is also possible to ask <span class="sc">gdb</span> to stop your program's execution
when an exception is raised. For more details, see <a href="Set-Catchpoints.html#Set-Catchpoints">Set Catchpoints</a>.
</body></html>