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

com.codepoetics.octarine.json.deserialisation.SafeDeserialiser Maven / Gradle / Ivy

There is a newer version: 0.18
Show newest version
package com.codepoetics.octarine.json.deserialisation;

import com.fasterxml.jackson.core.JsonParser;

import java.io.IOException;

public interface SafeDeserialiser extends Deserialiser {
    default S apply(JsonParser p) {
        try {
            return applyUnsafe(p);
        } catch (IOException e) {
            throw new DeserialisationException(e);
        }
    }

    S applyUnsafe(JsonParser p) throws IOException;
}