PlaybackFailedException
Stay organized with collections
Save and categorize content based on your preferences.
Thrown when playback 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
PlaybackFailedException
()
PlaybackFailedException
public PlaybackFailedException()
public
PlaybackFailedException
(String message)
PlaybackFailedException
public PlaybackFailedException(
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."],[[["\u003cp\u003e\u003ccode\u003ePlaybackFailedException\u003c/code\u003e signals that playback has failed within the AR Core framework.\u003c/p\u003e\n"],["\u003cp\u003eIt provides two constructors: one default and another accepting a custom error message.\u003c/p\u003e\n"],["\u003cp\u003eThis exception inherits standard methods from \u003ccode\u003eThrowable\u003c/code\u003e and \u003ccode\u003eObject\u003c/code\u003e for error handling and object management.\u003c/p\u003e\n"]]],["`PlaybackFailedException` is thrown when playback fails. It offers two public constructors: one default and another accepting a `String` message for details. It inherits methods from `java.lang.Throwable` for managing exceptions, such as `addSuppressed`, `getCause`, `getMessage`, `printStackTrace`, and `setStackTrace`. It also includes inherited methods from `java.lang.Object` for object-related operations like `equals`, `hashCode`, and `toString`.\n"],null,["# PlaybackFailedException\n\n`\npublic class\n`**PlaybackFailedException**`\n` \nThrown when playback failed. \n\nPublic Constructors\n-------------------\n\n|-----|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ` ` | [PlaybackFailedException](/ar/reference/java/com/google/ar/core/exceptions/PlaybackFailedException#PlaybackFailedException())`()` |\n| ` ` | [PlaybackFailedException](/ar/reference/java/com/google/ar/core/exceptions/PlaybackFailedException#PlaybackFailedException(java.lang.String))`(`[String](https://developer.android.com/reference/java/lang/String)` message)` |\n\nInherited Methods\n-----------------\n\nFrom `class\njava.lang.Throwable` \n\n|-----------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------|\n| ` synchronized final void ` | addSuppressed`(`[Throwable](https://developer.android.com/reference/java/lang/Throwable)` arg0)` |\n| ` synchronized `[Throwable](https://developer.android.com/reference/java/lang/Throwable)` ` | fillInStackTrace`()` |\n| ` synchronized `[Throwable](https://developer.android.com/reference/java/lang/Throwable)` ` | getCause`()` |\n| ` `[String](https://developer.android.com/reference/java/lang/String)` ` | getLocalizedMessage`()` |\n| ` `[String](https://developer.android.com/reference/java/lang/String)` ` | getMessage`()` |\n| ` `[StackTraceElement[]](https://developer.android.com/reference/java/lang/StackTraceElement)` ` | getStackTrace`()` |\n| ` synchronized final `[Throwable[]](https://developer.android.com/reference/java/lang/Throwable)` ` | getSuppressed`()` |\n| ` synchronized `[Throwable](https://developer.android.com/reference/java/lang/Throwable)` ` | initCause`(`[Throwable](https://developer.android.com/reference/java/lang/Throwable)` arg0)` |\n| ` void ` | printStackTrace`()` |\n| ` void ` | printStackTrace`(`[PrintWriter](https://developer.android.com/reference/java/io/PrintWriter)` arg0)` |\n| ` void ` | printStackTrace`(`[PrintStream](https://developer.android.com/reference/java/io/PrintStream)` arg0)` |\n| ` void ` | setStackTrace`(`[StackTraceElement[]](https://developer.android.com/reference/java/lang/StackTraceElement)` arg0)` |\n| ` `[String](https://developer.android.com/reference/java/lang/String)` ` | toString`()` |\n\nFrom `class\njava.lang.Object` \n\n|---------------------------------------------------------------------------------|-------------------------------------------------------------------------------------|\n| ` `[Object](https://developer.android.com/reference/java/lang/Object)` ` | clone`()` |\n| ` boolean ` | equals`(`[Object](https://developer.android.com/reference/java/lang/Object)` arg0)` |\n| ` void ` | finalize`()` |\n| ` final `[Class](https://developer.android.com/reference/java/lang/Class)`\u003c?\u003e ` | getClass`()` |\n| ` int ` | hashCode`()` |\n| ` final void ` | notify`()` |\n| ` final void ` | notifyAll`()` |\n| ` `[String](https://developer.android.com/reference/java/lang/String)` ` | toString`()` |\n| ` final void ` | wait`(long arg0, int arg1)` |\n| ` final void ` | wait`(long arg0)` |\n| ` final void ` | wait`()` |\n\nPublic Constructors\n-------------------\n\n#### public\nPlaybackFailedException\n()\n\n### PlaybackFailedException\n\n```java\npublic PlaybackFailedException()\n``` \n\u003cbr /\u003e\n\n#### public\nPlaybackFailedException\n([String](https://developer.android.com/reference/java/lang/String) message)\n\n### PlaybackFailedException\n\n```java\npublic PlaybackFailedException(\n String message\n)\n``` \n\u003cbr /\u003e\n\n| Details ||\n| Parameters | |-----------|---| | `message` | | |\n|------------|-------------------------------------|"]]