Handle failed bitmap decoding

This commit is contained in:
Moxie Marlinspike
2013-05-21 10:32:48 -07:00
parent 3df67a1643
commit a0a6c3f211
5 changed files with 30 additions and 5 deletions
@@ -0,0 +1,7 @@
package org.thoughtcrime.securesms.util;
public class BitmapDecodingException extends Throwable {
public BitmapDecodingException(String s) {
super(s);
}
}