com.fasterxml.jackson.jr.private_.exc.StreamConstraintsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jackson-jr-all Show documentation
Show all versions of jackson-jr-all Show documentation
"Uber" jar that contains all Jackson jr components as well as underlying Jackson core
Streaming, in a single jar.
The newest version!
package com.fasterxml.jackson.core.exc;
import com.fasterxml.jackson.core.JsonLocation;
import com.fasterxml.jackson.core.JsonProcessingException;
/**
* Exception type used to indicate violations of stream constraints
* (for example {@link 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