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

ucar.nc2.ft2.simpgeometry.exception.InvalidDataseriesException Maven / Gradle / Ivy

The newest version!
package ucar.nc2.ft2.simpgeometry.exception;

/**
 * An exception thrown for invalid dataseries in CF-SimpleGeometry Features
 * 
 * @author [email protected]
 *
 */
public class InvalidDataseriesException extends Exception {

  // Predefined Error Messages
  public static final String RANK_MISMATCH = "Error: Only dataseries of rank 1 or 2 are allowed for simple geometry.";

  /**
   * Construct a new instance of this exception
   * 
   * @param error associated error message.
   */
  public InvalidDataseriesException(String error) {
    super(error);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy