ucar.ma2.InvalidRangeException Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 1998-2018 University Corporation for Atmospheric Research/Unidata
* See LICENSE for license information.
*/
package ucar.ma2;
/**
* Thrown if an attempt is made to use an invalid
* Range to index an array.
*
* @author caron
*/
public class InvalidRangeException extends Exception {
public InvalidRangeException() {}
public InvalidRangeException(String s) {
super(s);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy