discord-jadx/app/src/main/java/com/otaliastudios/cameraview/CameraException.java
Juby210 02b39b5eaf
Enable replacing const values in jadx
Tracking changes should be much easier now.
2021-08-10 00:50:52 +02:00

18 lines
397 B
Java

package com.otaliastudios.cameraview;
public class CameraException extends RuntimeException {
private int reason = 0;
public CameraException(int i) {
this.reason = i;
}
public CameraException(Throwable th, int i) {
super(th);
this.reason = i;
}
public boolean a() {
int i = this.reason;
return i == 1 || i == 2 || i == 3;
}
}