catch exceptions
This commit is contained in:
parent
cf5687e0b8
commit
9a1503a5aa
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue