ErrorCode.UnsupportedErrorCodeException
Exception thrown when an unsupported or unrecognized error code is encountered.
Public Constructor Summary
Inherited Method Summary
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 UnsupportedErrorCodeException (int
errorCode)
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."],[[["`ErrorCode.UnsupportedErrorCodeException` signals an issue where an unsupported or unrecognized error code is encountered within the FIDO2 API."],["It is a subclass of `Exception` and provides a constructor that takes the unsupported error code as an argument."],["The exception includes standard methods inherited from `Throwable` for handling and investigating the error, like `getMessage()` and `printStackTrace()`."],["Developers should catch this exception to gracefully handle scenarios where an unexpected error code is returned by the FIDO2 API."]]],["`ErrorCode.UnsupportedErrorCodeException` is an exception thrown for unsupported or unrecognized error codes. It extends the base `Exception` class and has a public constructor `UnsupportedErrorCodeException(int errorCode)` for instantiation. Inherited methods include manipulating the stack trace, retrieving messages, and managing suppressed exceptions. The class also inherits methods from `java.lang.Object` such as `equals`, `hashCode`, `getClass` and others that enable object lifecycle management.\n"]]