NotYetAvailableException
Stay organized with collections
Save and categorize content based on your preferences.
AI-generated Key Takeaways
The NotYetAvailableException is thrown when an object being acquired is not yet available, such as when a sensor is still starting up.
This class has two public constructors: one without parameters and one that accepts a String message.
The NotYetAvailableException class inherits methods from java.lang.Throwable and java.lang.Object.
public class
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.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-31 UTC."],[],["`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"]]