from github to this gitea

This commit is contained in:
oscar.plaisant@icloud.com
2023-10-23 23:09:51 +02:00
commit a2ee0fa5ca
2898 changed files with 307871 additions and 0 deletions

34
java exceptions.md Normal file
View File

@@ -0,0 +1,34 @@
up::[[java]]
title::"gestion des erreurs"
#informatique
----
Gestion des erreurs avec java.
- détections / traitement des erreurs
- `try` `catch` et `finally`
# Détection d'erreurs
```java
public class TextException {
public static void main(String[] args) {
int i = 1;
int j = 0;
try {
System.out.println("resultat = " + (i/j));
} catch (ArithmeticException e) {
System.out.println("division par 0");
}
}
}
```
Avec `throws` :
```java
```