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

com.opencsv.exceptions.CsvMultilineLimitBrokenException Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2016 Andrew Rucker Jones.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.opencsv.exceptions;

import java.io.IOException;

/**
 * Exception when you break the line limit of a multiline field.
 * @author Edgar Silva
 */
public class CsvMultilineLimitBrokenException extends IOException {
    private static final long serialVersionUID = 1L;
    private long row;
    private String context;
    private int multilineLimit;

    /**
     * @return The multiline limit set during construction of the exception
     */
    public int getMultilineLimit() {
        return multilineLimit;
    }

    /**
     * @return The row number set during construction of the exception
     */
    public long getRow() {
        return row;
    }

    /**
     * @return Context set during construction of the exception
     */
    public String getContext() {
        return context;
    }

    /** Nullary constructor. Does nothing. */
    public CsvMultilineLimitBrokenException() {
        super();
    }

    /**
     * Constructor with a message.
     * @param message A human-readable error message
     * @param row Row number where error occurred
     * @param context Line (or part of the line) that caused the error
     * @param multilineLimit Multiline limit that was set
     */
    public CsvMultilineLimitBrokenException(String message,long row, String context, int multilineLimit) {
        super(message);
        this.row = row;
        this.context = context;
        this.multilineLimit = multilineLimit;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy