13 lines
313 B
Java
13 lines
313 B
Java
|
package com.google.firebase.components;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public class InvalidRegistrarException extends RuntimeException {
|
||
|
public InvalidRegistrarException(String str) {
|
||
|
super(str);
|
||
|
}
|
||
|
|
||
|
public InvalidRegistrarException(String str, Throwable th) {
|
||
|
super(str, th);
|
||
|
}
|
||
|
}
|