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

ch.rabanti.nanoxlsx4j.exceptions.RangeException Maven / Gradle / Ivy

Go to download

NanoXLSX4j is a small Java library to create and read XLSX files (Microsoft Excel 2007 or newer) in an easy and native way. The library is originated form PicoXLSX4j and has basic support of reading spreadsheets

There is a newer version: 2.4.2
Show newest version
/*
 * NanoXLSX4j is a small Java library to write and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
 * Copyright Raphael Stoeckli © 2024
 * This library is licensed under the MIT License.
 * You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
 */
package ch.rabanti.nanoxlsx4j.exceptions;

/**
 * Class for exceptions regarding range incidents (e.g out-of-range)
 *
 * @author Raphael Stoeckli
 */
public class RangeException extends RuntimeException {

    /**
     * Default constructor
     */
    public RangeException() {
        super();
    }

    /**
     * Constructor with passed message
     *
     * @param message Message of the exception
     */
    public RangeException(String message) {
        super(message);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy