catch exceptions

This commit is contained in:
Christian S 2016-05-05 22:15:58 +02:00
parent cf5687e0b8
commit 9a1503a5aa

View file

@ -247,9 +247,9 @@ public class AudioWife {
try {
totalDuration = mMediaPlayer.getDuration();
} catch (IllegalStateException e) {
e.printStackTrace();
//e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
//e.printStackTrace();
}
}