Commit 8ff199b1afd51903c3e24e6b5a8e8a0f034db06f
1 parent
cf7dd450
Ajout info exception qui doit jamais arriver
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
PremiereActivite/app/src/main/java/com/example/app_10p5/CarteActivite.java
... | ... | @@ -192,7 +192,7 @@ public class CarteActivite extends Activity implements ASyncResponse { |
192 | 192 | nt.execute(); |
193 | 193 | } |
194 | 194 | catch (Throwable t){ |
195 | - Toast.makeText(this, "WTF, le cancer est dans l'application!!", Toast.LENGTH_LONG).show(); | |
195 | + Toast.makeText(this, "WTF, le cancer est dans l'application!! " + t.toString(), Toast.LENGTH_LONG).show(); | |
196 | 196 | finish(); |
197 | 197 | return; |
198 | 198 | } | ... | ... |