mirror of
https://github.com/php/doc-pt_br.git
synced 2026-03-24 23:22:17 +01:00
119 lines
3.7 KiB
XML
119 lines
3.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- EN-Revision: 4a6671fe697ead5b27603b56face01a2c4e7ebe5 Maintainer: leonardolara Status: ready -->
|
|
<refentry xml:id="function.set-exception-handler" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>set_exception_handler</refname>
|
|
<refpurpose>
|
|
Define uma função de manipulação de exceção definida pelo usuário
|
|
</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type class="union"><type>callable</type><type>null</type></type><methodname>set_exception_handler</methodname>
|
|
<methodparam><type class="union"><type>callable</type><type>null</type></type><parameter>callback</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
Define o manipulador de exceção padrão se uma exceção não for capturada dentro de
|
|
um bloco try/catch. A execução irá parar após a função definida no parâmetro
|
|
<parameter>callback</parameter> for chamada.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>callback</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
A função a ser chamada quando uma exceção não capturada ocorrer.
|
|
Esta função de manipulação precisa aceitar um parâmetro,
|
|
que será o objeto <classname>Throwable</classname> que foi lançado.
|
|
Tanto <classname>Error</classname> quanto <classname>Exception</classname>
|
|
implementam a interface <classname>Throwable</classname>.
|
|
Esta é a assinatura do manipulador:
|
|
</para>
|
|
<para>
|
|
<methodsynopsis>
|
|
<type>void</type><methodname><replaceable>handler</replaceable></methodname>
|
|
<methodparam><type>Throwable</type><parameter>ex</parameter></methodparam>
|
|
</methodsynopsis>
|
|
</para>
|
|
<para>
|
|
&null; pode ser passardo no lugar, para redefinir este manipulador ao seu estado inicial.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
Retorna o manipulador de exceção anteriormente definido, ou &null; em caso de erro. Se
|
|
nenhum manipulador anterior estava definido, &null; também é retornado.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title>Exemplo de <function>set_exception_handler</function></title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
function exception_handler(Throwable $exception) {
|
|
echo "Exceção não capturada: " , $exception->getMessage(), "\n";
|
|
}
|
|
|
|
set_exception_handler('exception_handler');
|
|
|
|
throw new Exception('Exceção Não Capturada');
|
|
echo "Não Executado\n";
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="seealso"><!-- {{{ -->
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member><function>get_exception_handler</function></member>
|
|
<member><function>restore_exception_handler</function></member>
|
|
<member><function>restore_error_handler</function></member>
|
|
<member><function>error_reporting</function></member>
|
|
<member><link linkend="language.exceptions">Exceções</link></member>
|
|
</simplelist>
|
|
</para>
|
|
</refsect1><!-- }}} -->
|
|
|
|
</refentry>
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|