2013-05-21 10:32:48 -07:00
|
|
|
package org.thoughtcrime.securesms.util;
|
|
|
|
|
2016-01-30 15:22:55 -08:00
|
|
|
public class BitmapDecodingException extends Exception {
|
|
|
|
|
2013-05-21 10:32:48 -07:00
|
|
|
public BitmapDecodingException(String s) {
|
|
|
|
super(s);
|
|
|
|
}
|
2016-01-30 15:22:55 -08:00
|
|
|
|
|
|
|
public BitmapDecodingException(Exception nested) {
|
|
|
|
super(nested);
|
|
|
|
}
|
2013-05-21 10:32:48 -07:00
|
|
|
}
|