DeadlineExceededException

  • 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 from Throwable 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

Inherited Methods

Public Constructors

DeadlineExceededException

public DeadlineExceededException()

DeadlineExceededException

public DeadlineExceededException(
  String message
)

Details
Parameters
message