AI-generated Key Takeaways
-
ResourceExhaustedException is thrown when an application attempts to acquire more objects than the available resources allow.
-
This exception indicates that the application has exceeded a limit on the number of acquired resources, such as point clouds.
-
The exception can be constructed with or without a specific message string.
public class
ResourceExhaustedException
Acquire failed because there are too many objects already acquired. For example, the application may acquire up to N point clouds. N is determined by available resources, and is usually small (for example, 8). If the application tries to acquire N+1 point clouds without releasing the previously acquired ones, it will get this error.
Public Constructors
|
|
|
ResourceExhaustedException(String message)
|
Inherited Methods
Public Constructors
public ResourceExhaustedException ()
ResourceExhaustedException
public ResourceExhaustedException()
public ResourceExhaustedException (String message)
ResourceExhaustedException
public ResourceExhaustedException( String message )
| Details | |||
|---|---|---|---|
| Parameters |
|
||