what-the-bank/sources/org/threeten/bp/DateTimeException.java

15 lines
347 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.threeten.bp;
/* loaded from: classes.dex */
public class DateTimeException extends RuntimeException {
private static final long serialVersionUID = -1632418723876261839L;
public DateTimeException(String str) {
super(str);
}
public DateTimeException(String str, Throwable th) {
super(str, th);
}
}