mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-25 19:15:16 +00:00
4a261bcf68
Fixes #5046 // FREEBIE
13 lines
242 B
Java
13 lines
242 B
Java
package org.thoughtcrime.securesms.util;
|
|
|
|
public class BitmapDecodingException extends Exception {
|
|
|
|
public BitmapDecodingException(String s) {
|
|
super(s);
|
|
}
|
|
|
|
public BitmapDecodingException(Exception nested) {
|
|
super(nested);
|
|
}
|
|
}
|