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

org.apache.juli.logging.com.fasterxml.jackson.core.exc.StreamConstraintsException Maven / Gradle / Ivy

There is a newer version: 10.1.23
Show newest version
package org.apache.juli.logging.com.fasterxml.jackson.core.exc;

import org.apache.juli.logging.com.fasterxml.jackson.core.JsonLocation;
import org.apache.juli.logging.com.fasterxml.jackson.core.JsonProcessingException;

/**
 * Exception type used to indicate violations of stream constraints
 * (for example {@link org.apache.juli.logging.com.fasterxml.jackson.core.StreamReadConstraints})
 * when reading or writing content.
 *
 * @since 2.15
 */
public class StreamConstraintsException
    extends JsonProcessingException
{
    private final static long serialVersionUID = 2L;

    public StreamConstraintsException(String msg) {
        super(msg);
    }

    public StreamConstraintsException(String msg, JsonLocation loc) {
        super(msg, loc);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy