All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vladkrava.converter.serialization.DataSerializationException Maven / Gradle / Ivy

Go to download

Enables conversion of Apache Avro object into popular data formats: JSON, XML, etc

The newest version!
package com.vladkrava.converter.serialization;

/**
 * Signals that some data serialization exception of some sort has occurred.
 * This class is the general exception thrown during the execution of serialization/deserialization operations.
 *
 * @author Vlad Krava - [email protected]
 * @see Serializer
 * @see Deserializer
 * @since 0.1-SNAPSHOT
 */
public class DataSerializationException extends Exception {

    /**
     * @param message text description related to the possible cause of an issue
     * @param cause   info related to the cause saved for later retrieval
     */
    public DataSerializationException(final String message, final Throwable cause) {
        super(message, cause);
    }

    /**
     * @param message text description related to the possible cause of an issue
     */
    public DataSerializationException(final String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy