Merge "Add missing ServiceNotFoundException class"
This commit is contained in:
committed by
Android (Google) Code Review
commit
2dd5018a0f
@@ -71,4 +71,18 @@ public final class ServiceManager {
|
||||
public static void initServiceCache(Map<String, IBinder> cache) {
|
||||
// pass
|
||||
}
|
||||
|
||||
/**
|
||||
* Exception thrown when no service published for given name. This might be
|
||||
* thrown early during boot before certain services have published
|
||||
* themselves.
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
public static class ServiceNotFoundException extends Exception {
|
||||
// identical to the original implementation
|
||||
public ServiceNotFoundException(String name) {
|
||||
super("No service published for: " + name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user