Vertaling van "try/catch" in Duits
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
I've never been completely happy with the way exception handling works, there's a lot exceptions and try/catch brings to the table(stack unwinding, etc.), but it seems to break a lot of the OO model...
Ich war noch nie völlig zufrieden mit der Art und Weise, wie Ausnahmebehandlung funktioniert, es gibt viele Ausnahmen und Try/Catch bringt auf den Tisch(Stack-Unwinding, etc.), aber es scheint ei...
We have used the Try/Catch and Throw actions to display a warning if the geolocation coordinates describe a location outside the USA.
Wir haben die Aktionen Try/Catch und Throw verwendet, um eine Warnung anzuzeigen, wenn die Standortkoordinaten einen Ort außerhalb der USA beschreiben.
In the Try/Catch action shown in the screenshot above, we have done the following
In der in der Abbildung oben gezeigten Try/Catch-Aktion haben wir Folgendes definiert
A Try/Catch action was added.
You can select a piece of code and create a Try/Catch block for it.
Sie können einen Codeausschnitt auswählen und für diesen einen Try-Catch-Block erstellen.
For errors in the JavaScript call stack, the error travels up the chain of calls until caught (in a try/catch block, for instance) or until it reaches the window object, raising the window.onerror event.
Bei Fehlern in der JavaScript-Aufrufliste wird der Fehler in der Aufrufkette nach oben weitergegeben, bis er abgefangen wird (zum Beispiel in einem Try-Catch-Block), oder bis er das Fensterobjekt erreicht, wo er das window.onerror-Ereignis auslöst.
While it is possible to catch an exit with try/catch doing so is extremely rare.
Während es möglich ist einen Austieg durch try/catch zu behandeln, ist es extrem selten dies zu tun.
Throw: If an error is detected, this option throws an exception that is stored in the Try/Catch action's variable.
Throw: Wenn ein Fehler aufgetreten ist, wird mit dieser Option eine Ausnahme ausgelöst, die in der Variablen der Try/Catch-Aktion gespeichert wird.
If no Catch action is defined, then the action that follows the Try/Catch action is processed.
Wenn keine Catch-Aktion definiert ist, so wird die Aktion, die auf die Try/Catch-Aktion folgt, verarbeitet.
Both the Throw action (defined for a condition) or the Throw option (defined for an action) each throw an exception that is stored in the Try/Catch action's variable.
Sowohl eine für eine Bedingung definierte Throw-Aktion als auch eine für eine Aktion definierte Throw-Option löst eine Ausnahme aus, die in der Variablen der Try/Catch-Aktion gespeichert wird.
Therefore, the Catch part of the Try/Catch action is not executed.
Daher wird der Catch-Teil der Try/Catch-Aktion nicht ausgeführt.
Wrap your call to Vungle.create() in a try/catch because Vungle may throw an error during the creation process (for instance, the extension throws an error if running on the desktop)
Sie sollten Ihren Call in einem Try/Catch mit Vungle.create() wrappen, da Vungle während des Erstellungsvorgangs einen Fehler ausgeben könnte (z.B. gibt die Erweiterung einen Fehler aus, wenn sie auf einem Desktop ausgeführt wird)
At a fundamental level, any error not trapped in a try/catch block or the onError handler applied to a WinJS.Promise object (in a call to the then or done methods, for example) raises the WinJS.Application.onerror event.
Auf einer grundlegenden Ebene löst jeder Fehler, der nicht in einem Try-Catch-Block oder dem auf ein WinJS.Promise-Objekt angewendeten onError-Handler abgefangen wird (zum Beispiel in einem Aufruf der then- oder done-Methoden), das WinJS.Application.onerror-Ereignis aus.