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

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

There is a newer version: 3.1.1
Show newest version
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);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy