15 lines
321 B
Java
15 lines
321 B
Java
package com.drew.imaging;
|
|
|
|
import com.drew.lang.CompoundException;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class ImageProcessingException extends CompoundException {
|
|
public ImageProcessingException(String str) {
|
|
super(str);
|
|
}
|
|
|
|
public ImageProcessingException(Throwable th) {
|
|
super(th);
|
|
}
|
|
}
|