13 lines
282 B
Java
13 lines
282 B
Java
|
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);
|
||
|
}
|
||
|
}
|