AI-generated Key Takeaways
-
DeadlineExceededException
signals that an attempt to acquire a resource failed because it's already released or a deadline was exceeded. -
This exception commonly occurs when an application holds onto an old frame for too long and then tries to access data from it, like a point cloud.
-
It has two constructors: one default and one accepting a custom error message.
-
DeadlineExceededException
inherits standard methods fromThrowable
for exception handling and stack trace information.
public class
DeadlineExceededException
Acquire failed because the object being acquired is already released. This happens, for example, if the application holds an old frame for too long, then tries to acquire a point cloud from it.
Public Constructors
|
|
|
DeadlineExceededException(String message)
|
Inherited Methods
Public Constructors
public DeadlineExceededException ()
DeadlineExceededException
public DeadlineExceededException()
public DeadlineExceededException (String message)
DeadlineExceededException
public DeadlineExceededException( String message )
Details | |||
---|---|---|---|
Parameters |
|