ch.rabanti.nanoxlsx4j.exceptions.RangeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nanoxlsx4j Show documentation
Show all versions of nanoxlsx4j Show documentation
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
/*
* 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);
}
}