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

com.flipkart.hbaseobjectmapper.codec.exceptions.SerializationException Maven / Gradle / Ivy

package com.flipkart.hbaseobjectmapper.codec.exceptions;

import com.flipkart.hbaseobjectmapper.codec.Codec;

import java.io.IOException;

/**
 * To be thrown when {@link Codec} fails to serialize
 */
public class SerializationException extends IOException {

    public SerializationException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy