Example usage for com.fasterxml.jackson.core JsonLocation getColumnNr

List of usage examples for com.fasterxml.jackson.core JsonLocation getColumnNr

Introduction

In this page you can find the example usage for com.fasterxml.jackson.core JsonLocation getColumnNr.

Prototype

public int getColumnNr() 

Source Link

Usage

From source file:org.eclipse.rdf4j.rio.rdfjson.RDFJSONParser.java

protected void reportFatalError(String msg, JsonLocation location) throws RDFParseException {
    reportFatalError(msg, location.getLineNr(), location.getColumnNr());
}