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