DataInvalidFormatException

  • DataInvalidFormatException signals that the input data for an operation is not in the expected format.

  • This exception provides two constructors: one default constructor and another that accepts a custom error message.

  • It inherits methods from Throwable for exception handling, such as getting the cause and stack trace.

  • Developers can use this exception to indicate data format issues during ARCore operations.

public class DataInvalidFormatException

The data passed in for this operation was not in a valid format.

Public Constructors

Inherited Methods

Public Constructors

DataInvalidFormatException

public DataInvalidFormatException()

DataInvalidFormatException

public DataInvalidFormatException(
  String message
)

Details
Parameters
message