exception handling - Definition. Was ist exception handling
Diclib.com
Wörterbuch ChatGPT
Geben Sie ein Wort oder eine Phrase in einer beliebigen Sprache ein 👆
Sprache:

Übersetzung und Analyse von Wörtern durch künstliche Intelligenz ChatGPT

Auf dieser Seite erhalten Sie eine detaillierte Analyse eines Wortes oder einer Phrase mithilfe der besten heute verfügbaren Technologie der künstlichen Intelligenz:

  • wie das Wort verwendet wird
  • Häufigkeit der Nutzung
  • es wird häufiger in mündlicher oder schriftlicher Rede verwendet
  • Wortübersetzungsoptionen
  • Anwendungsbeispiele (mehrere Phrasen mit Übersetzung)
  • Etymologie

Was (wer) ist exception handling - definition


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 .