|| endIndex < 0 || endIndex > timeAxis.getSize() - 1 )
{
String availStart = timeAxis.getDateRange().getStart().toDateTimeStringISO();
String availEnd = timeAxis.getDateRange().getEnd().toDateTimeStringISO();
String msg = "Requested temporal range [" + requestStartTime.toDateTimeStringISO()
+ " - " + requestEndTime.toDateTimeStringISO()
+ "] not in available range [" + availStart + " - " + availEnd + "].";
log.debug( "writeCoverageDataToFile(): " + msg );
throw new WcsException( WcsException.Code.CoverageNotDefined, "Time", msg );
}
try