what-the-bank/sources/org/greenrobot/eventbus/EventBusException.java

13 lines
282 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package org.greenrobot.eventbus;
/* loaded from: classes.dex */
public class EventBusException extends RuntimeException {
public EventBusException(String str) {
super(str);
}
public EventBusException(String str, Throwable th) {
super(str, th);
}
}