15 lines
347 B
Java
15 lines
347 B
Java
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);
|
|
}
|
|
}
|