82 lines
2.7 KiB
Java
82 lines
2.7 KiB
Java
|
package org.beyka.tiffbitmapfactory.exceptions;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class DecodeTiffException extends RuntimeException {
|
||
|
private String aditionalInfo;
|
||
|
private int fileDescriptor;
|
||
|
private String fileName;
|
||
|
|
||
|
public DecodeTiffException(String str) {
|
||
|
super("Could not decode tiff file ".concat(String.valueOf(str)));
|
||
|
this.fileDescriptor = -1;
|
||
|
this.fileName = str;
|
||
|
}
|
||
|
|
||
|
public DecodeTiffException(int i) {
|
||
|
super("Could not decode tiff file with file descriptor ".concat(String.valueOf(i)));
|
||
|
this.fileDescriptor = i;
|
||
|
}
|
||
|
|
||
|
/* JADX WARN: Illegal instructions before constructor call */
|
||
|
/*
|
||
|
Code decompiled incorrectly, please refer to instructions dump.
|
||
|
To view partially-correct add '--show-bad-code' argument
|
||
|
*/
|
||
|
public DecodeTiffException(java.lang.String r3, java.lang.String r4) {
|
||
|
/*
|
||
|
r2 = this;
|
||
|
java.lang.StringBuilder r0 = new java.lang.StringBuilder
|
||
|
java.lang.String r1 = "Could not decode tiff file "
|
||
|
r0.<init>(r1)
|
||
|
r0.append(r3)
|
||
|
java.lang.String r1 = "\n"
|
||
|
r0.append(r1)
|
||
|
r0.append(r4)
|
||
|
java.lang.String r0 = r0.toString()
|
||
|
r2.<init>(r0)
|
||
|
r0 = -1
|
||
|
r2.fileDescriptor = r0
|
||
|
r2.fileName = r3
|
||
|
r2.aditionalInfo = r4
|
||
|
return
|
||
|
*/
|
||
|
throw new UnsupportedOperationException("Method not decompiled: org.beyka.tiffbitmapfactory.exceptions.DecodeTiffException.<init>(java.lang.String, java.lang.String):void");
|
||
|
}
|
||
|
|
||
|
/* JADX WARN: Illegal instructions before constructor call */
|
||
|
/*
|
||
|
Code decompiled incorrectly, please refer to instructions dump.
|
||
|
To view partially-correct add '--show-bad-code' argument
|
||
|
*/
|
||
|
public DecodeTiffException(int r3, java.lang.String r4) {
|
||
|
/*
|
||
|
r2 = this;
|
||
|
java.lang.StringBuilder r0 = new java.lang.StringBuilder
|
||
|
java.lang.String r1 = "Could not decode tiff file with file descriptor"
|
||
|
r0.<init>(r1)
|
||
|
r0.append(r3)
|
||
|
java.lang.String r1 = "\n"
|
||
|
r0.append(r1)
|
||
|
r0.append(r4)
|
||
|
java.lang.String r0 = r0.toString()
|
||
|
r2.<init>(r0)
|
||
|
r2.fileDescriptor = r3
|
||
|
r2.aditionalInfo = r4
|
||
|
return
|
||
|
*/
|
||
|
throw new UnsupportedOperationException("Method not decompiled: org.beyka.tiffbitmapfactory.exceptions.DecodeTiffException.<init>(int, java.lang.String):void");
|
||
|
}
|
||
|
|
||
|
public String getFileName() {
|
||
|
return this.fileName;
|
||
|
}
|
||
|
|
||
|
public int getFileDescriptor() {
|
||
|
return this.fileDescriptor;
|
||
|
}
|
||
|
|
||
|
public String getAditionalInfo() {
|
||
|
return this.aditionalInfo;
|
||
|
}
|
||
|
}
|