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

com.altova.text.tablelike.flf.ParserException Maven / Gradle / Ivy

////////////////////////////////////////////////////////////////////////
//
// ParserException.java
//
// This file was generated by MapForce 2017sp2.
//
// YOU SHOULD NOT MODIFY THIS FILE, BECAUSE IT WILL BE
// OVERWRITTEN WHEN YOU RE-RUN CODE GENERATION.
//
// Refer to the MapForce Documentation for further details.
// http://www.altova.com/mapforce
//
////////////////////////////////////////////////////////////////////////

package com.altova.text.tablelike.flf;

import com.altova.text.tablelike.MappingException;

public class ParserException extends MappingException {
    int m_Offset = -1;

    public int getOffset() {
        return m_Offset;
    }

    ParserException(String message, int offset) {
        super(message + " at offset #" + offset);
        m_Offset = offset;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy