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

io.sprucehill.facebook.util.JsonDateProcessingException Maven / Gradle / Ivy

The newest version!
package io.sprucehill.facebook.util;

import com.fasterxml.jackson.core.JsonLocation;
import com.fasterxml.jackson.core.JsonProcessingException;

/**
 * @author Michael Duergner 
 */
public class JsonDateProcessingException extends JsonProcessingException {

    protected JsonDateProcessingException(String msg, JsonLocation loc, Throwable rootCause) {
        super(msg, loc, rootCause);
    }

    protected JsonDateProcessingException(String msg) {
        super(msg);
    }

    protected JsonDateProcessingException(String msg, JsonLocation loc) {
        super(msg, loc);
    }

    protected JsonDateProcessingException(String msg, Throwable rootCause) {
        super(msg, rootCause);
    }

    protected JsonDateProcessingException(Throwable rootCause) {
        super(rootCause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy