com.fasterxml.jackson.dataformat.toml.TomlStreamWriteException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jackson-dataformat-toml Show documentation
Show all versions of jackson-dataformat-toml Show documentation
Support for reading and writing TOML-encoded data via Jackson abstractions.
package com.fasterxml.jackson.dataformat.toml;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.exc.StreamWriteException;
public final class TomlStreamWriteException
extends StreamWriteException
{
private static final long serialVersionUID = 1L;
TomlStreamWriteException(String msg, JsonGenerator g) {
super(msg, g);
}
@Override
public StreamWriteException withGenerator(JsonGenerator g) {
this._processor = g;
return this;
}
}