Initial commit
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
package com.alibaba.android.arouter.exception;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class HandlerException extends RuntimeException {
|
||||
public HandlerException(String str) {
|
||||
super(str);
|
||||
}
|
||||
}
|
@@ -0,0 +1,8 @@
|
||||
package com.alibaba.android.arouter.exception;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class InitException extends RuntimeException {
|
||||
public InitException(String str) {
|
||||
super(str);
|
||||
}
|
||||
}
|
@@ -0,0 +1,8 @@
|
||||
package com.alibaba.android.arouter.exception;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class NoRouteFoundException extends RuntimeException {
|
||||
public NoRouteFoundException(String str) {
|
||||
super(str);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user