mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-06-01 04:53:12 +01:00
Check result of bitmap size operation for failure
Fixes #5046 // FREEBIE
This commit is contained in:
@@ -1,7 +1,12 @@
|
||||
package org.thoughtcrime.securesms.util;
|
||||
|
||||
public class BitmapDecodingException extends Throwable {
|
||||
public class BitmapDecodingException extends Exception {
|
||||
|
||||
public BitmapDecodingException(String s) {
|
||||
super(s);
|
||||
}
|
||||
|
||||
public BitmapDecodingException(Exception nested) {
|
||||
super(nested);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user