RecordingFailedException
Thrown when recording failed.
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
RecordingFailedException
()
RecordingFailedException
public RecordingFailedException()
public
RecordingFailedException
(String message)
RecordingFailedException
public RecordingFailedException(
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."],[[["`RecordingFailedException` signals that an ARCore recording operation has failed."],["It provides two constructors: one with no arguments and another accepting a custom error message."],["This exception inherits methods from `Throwable` for handling and reporting errors."]]],["The `RecordingFailedException` class is thrown when a recording fails. It has two public constructors: one that takes no arguments and another that accepts a `String` message. It inherits methods from `java.lang.Throwable`, allowing operations like adding suppressed exceptions, getting the cause, and managing the stack trace. It also inherits from `java.lang.Object`, providing standard object methods. This exception signals recording issues and allows for detailed error reporting.\n"]]