11 lines
368 B
Java
11 lines
368 B
Java
/* GENERATED SOURCE. DO NOT MODIFY. */
|
|
package com.android.i18n.phonenumbers;
|
|
|
|
/** Exception class for cases when expected metadata cannot be found.
|
|
* @hide This class is not part of the Android public SDK API*/
|
|
public final class MissingMetadataException extends IllegalStateException {
|
|
|
|
public MissingMetadataException(String message) {
|
|
super(message);
|
|
}
|
|
} |