NotTrackingException
Thrown if an operation requires the AR system to be TRACKING
(checked).
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
NotTrackingException
()
NotTrackingException
public NotTrackingException()
public
NotTrackingException
(String message)
NotTrackingException
public NotTrackingException(
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."],[[["`NotTrackingException` is thrown when an AR operation requires the system to be in the TRACKING state but it is not."],["This exception is a checked exception, meaning it must be explicitly handled in your code."],["It provides two constructors: one default constructor and another that accepts a custom error message."],["`NotTrackingException` inherits methods from `Throwable` for exception handling, like getting the stack trace or setting the cause."]]],["`NotTrackingException` is thrown when an operation requires the AR system to be in the `TRACKING` state. It has two public constructors: one default and one that accepts a `String` message. It inherits methods from `java.lang.Throwable` and `java.lang.Object`, which include functions for managing stack traces, causes, messages, and object-related operations such as equality checks, and thread notification.\n"]]