12 lines
266 B
Java
12 lines
266 B
Java
|
package com.github.barteksc.pdfviewer.exception;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public class PageRenderingException extends Exception {
|
||
|
public final int b;
|
||
|
|
||
|
public PageRenderingException(int i, Throwable th) {
|
||
|
super(th);
|
||
|
this.b = i;
|
||
|
}
|
||
|
}
|