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

com.maxmind.db.DeserializationException Maven / Gradle / Ivy

package com.maxmind.db;

/**
 * Signals that the value could not be deserialized into the type.
 */
public class DeserializationException extends RuntimeException {
    private static final long serialVersionUID = 1L;

    DeserializationException() {
        super("Database value cannot be deserialized into the type.");
    }

    DeserializationException(String message) {
        super(message);
    }

    DeserializationException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy