I'm working with a try{} catch(){} exception right now and I want to change a Variable. For this my board has to connect to the Internet and with a try{} statement it will try to do so. If it fails I simply want to set the variables to 0.
try {
timeClient.update();
ntp_seconds = timeClient.getSeconds();
ntp_minutes = timeClient.getMinutes();
ntp_hours = timeClient.getHours();
}
catch () {
ntp_seconds = 0;
ntp_minutes = 0;
ntp_hours = 0;
}
I am getting this error: Compilation error: expected type-specifier before ')' token I know that I somehow have to pass my variables into the catch() "function" but somehow I can't pass variables in like I would with normal functions.