exception handling - definição. O que é exception handling. Significado, conceito
Diclib.com
Dicionário ChatGPT
Digite uma palavra ou frase em qualquer idioma 👆
Idioma:

Tradução e análise de palavras por inteligência artificial ChatGPT

Nesta página você pode obter uma análise detalhada de uma palavra ou frase, produzida usando a melhor tecnologia de inteligência artificial até o momento:

  • como a palavra é usada
  • frequência de uso
  • é usado com mais frequência na fala oral ou escrita
  • opções de tradução de palavras
  • exemplos de uso (várias frases com tradução)
  • etimologia

O que (quem) é exception handling - definição


Exception handling         
PROCESS OF RESPONDING TO ANOMALOUS OR EXCEPTIONAL CONDITIONS REQUIRING SPECIAL PROCESSING IN COMPUTER PROGRAMMING
Error handling; Error handler; Try-catch block; Programming exception; Checked exceptions; Exception (computer science); Exception handler; Exception (computing); Checked exception; Exception condition; Exception (programming); Hardware exception; Run time exception; Error handling testing; Unhandled exception; Unhandled Exception; Unhandled exceptions; Unhandled Exceptions; Error reporting; Error trapping; Try catch; Exception specification; Wrong Argument; Exception mechanism; Try block; Pokémon exception handling; Pokemon exception handling; Exceptions handling; Unchecked exception; Java.lang.Exception; Java.lang.Throwable; Runtime exception; Static checking of exceptions
In computing and computer programming, exception handling is the process of responding to the occurrence of exceptions – anomalous or exceptional conditions requiring special processing – during the execution of a program. In general, an exception breaks the normal flow of execution and executes a pre-registered exception handler; the details of how this is done depend on whether it is a hardware or software exception and how the software exception is implemented.
exception handler         
PROCESS OF RESPONDING TO ANOMALOUS OR EXCEPTIONAL CONDITIONS REQUIRING SPECIAL PROCESSING IN COMPUTER PROGRAMMING
Error handling; Error handler; Try-catch block; Programming exception; Checked exceptions; Exception (computer science); Exception handler; Exception (computing); Checked exception; Exception condition; Exception (programming); Hardware exception; Run time exception; Error handling testing; Unhandled exception; Unhandled Exception; Unhandled exceptions; Unhandled Exceptions; Error reporting; Error trapping; Try catch; Exception specification; Wrong Argument; Exception mechanism; Try block; Pokémon exception handling; Pokemon exception handling; Exceptions handling; Unchecked exception; Java.lang.Exception; Java.lang.Throwable; Runtime exception; Static checking of exceptions
Special code which is called when an exception occurs during the execution of a program. If the programmer does not provide a handler for a given exception, a built-in system exception handler will usually be called resulting in abortion of the program run and some kind of error indication being returned to the user. Examples of exception handler mechanisms are Unix's signal calls and Lisp's catch and throw. (1994-10-31)
Automated exception handling         
Automated exception handling is a computing term referring to the computerized handling of errors. Runtime systems (engines) such as those for the Java programming language or .