what-the-bank/sources/com/google/protobuf/UninitializedMessageExcepti...

14 lines
385 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.google.protobuf;
import java.util.List;
/* loaded from: classes2.dex */
public class UninitializedMessageException extends RuntimeException {
private final List<String> b;
public UninitializedMessageException() {
super("Message was missing required fields. (Lite runtime could not determine which fields were missing).");
this.b = null;
}
}