Class SchemaRegistryApacheAvroException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.azure.core.exception.AzureException
-
- com.azure.data.schemaregistry.apacheavro.SchemaRegistryApacheAvroException
-
- All Implemented Interfaces:
Serializable
public class SchemaRegistryApacheAvroException extends com.azure.core.exception.AzureExceptionRepresents an exception that is thrown when Avro serialization or deserialization fails.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SchemaRegistryApacheAvroException(String message)Initializes a new instance.SchemaRegistryApacheAvroException(String message, Throwable cause)Initializes a new instance.SchemaRegistryApacheAvroException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)Initializes a new instance.SchemaRegistryApacheAvroException(String message, Throwable cause, String schemaId)Initializes a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetSchemaId()Gets the schema id that was associated with this exception.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SchemaRegistryApacheAvroException
public SchemaRegistryApacheAvroException(String message)
Initializes a new instance.- Parameters:
message- The exception message.
-
SchemaRegistryApacheAvroException
public SchemaRegistryApacheAvroException(String message, Throwable cause)
Initializes a new instance.- Parameters:
message- The exception message.cause- TheThrowablewhich caused the creation of this exception.
-
SchemaRegistryApacheAvroException
public SchemaRegistryApacheAvroException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
Initializes a new instance.- Parameters:
message- The exception message.cause- TheThrowablewhich caused the creation of this exception.enableSuppression- Whether suppression is enabled or disabled.writableStackTrace- Whether the exception stack trace will be filled in.
-
SchemaRegistryApacheAvroException
public SchemaRegistryApacheAvroException(String message, Throwable cause, String schemaId)
Initializes a new instance.- Parameters:
message- The exception message.cause- TheThrowablewhich caused the creation of this exception.schemaId- The id of the schema being processed when this exception occurred.nullif there was none.
-
-
Method Detail
-
getSchemaId
public String getSchemaId()
Gets the schema id that was associated with this exception.- Returns:
- The schema id associated with teh exception.
nullif there was no schema id.
-
-