14 lines
385 B
Java
14 lines
385 B
Java
|
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;
|
||
|
}
|
||
|
}
|