NotYetAvailableException
Acquire failed because the object being acquired is not yet available. This happens, for example,
if the sensor providing the data hasn't fully started up for the current frame.
Inherited Methods
From class
java.lang.Throwable
From class
java.lang.Object
Object
|
clone()
|
boolean
|
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
Public Constructors
public
NotYetAvailableException
()
NotYetAvailableException
public NotYetAvailableException()
public
NotYetAvailableException
(String message)
NotYetAvailableException
public NotYetAvailableException(
String message
)
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-10-31 UTC.
[null,null,["Last updated 2024-10-31 UTC."],[[["`NotYetAvailableException` signals that a requested resource, like sensor data, is temporarily unavailable."],["This exception commonly occurs during AR session initialization, particularly if sensors haven't fully started."],["It inherits methods from `Throwable` for exception handling and stack tracing."],["Two constructors are available: one default and another accepting a custom error message."]]],["`NotYetAvailableException` signifies that an object acquisition failed because it's not yet ready, such as when a sensor hasn't fully started. It offers two constructors: one default and one that accepts a message. Inherited methods from `Throwable` manage exceptions, including adding, getting, and printing stack traces. Methods from `Object` are also inherited. The core functionality is managing an exception for objects not yet accessible.\n"]]