Ниже указан мой класс Point
public Point(ZonedDateTime timeStamp, double longitude, double latitude, double elevation)throws GPSException {
this.timeStamp = timeStamp;
if(longitude < -180.0 || latitude < 0.0){
throw new GPSException("TOO LOW");
}else if(longitude > 180 || latitude > 90){
throw new GPSException("TOO HIGH");
}else{
double dec1 = Double.valueOf(newFormat.format(longitude));
this.longitude = dec1;
double dec = Double.valueOf(newFormat.format(latitude));
this.latitude = dec;
this.longitude = dec1;
this.elevation = elevation;
}
}
Когда я запускаю это, я получаю ошибку:
ошибка: не могу найти символ
ошибка указывает на GPSException (см. изображение)
Как я могу исправить эту ошибку?