27 lines
701 B
Java
27 lines
701 B
Java
package org.beyka.tiffbitmapfactory.exceptions;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public class CantOpenFileException extends RuntimeException {
|
|
private int fileDescriptor;
|
|
private String fileName;
|
|
|
|
public CantOpenFileException(String str) {
|
|
super("Can't open file ".concat(String.valueOf(str)));
|
|
this.fileDescriptor = -1;
|
|
this.fileName = str;
|
|
}
|
|
|
|
public CantOpenFileException(int i) {
|
|
super("Can't open file with file descriptor ".concat(String.valueOf(i)));
|
|
this.fileDescriptor = i;
|
|
}
|
|
|
|
public String getFileName() {
|
|
return this.fileName;
|
|
}
|
|
|
|
public int getFileDescriptor() {
|
|
return this.fileDescriptor;
|
|
}
|
|
}
|