This commit is contained in:
2019-09-26 09:55:48 +02:00
parent 2c56919217
commit 9a64e89dbc
2 changed files with 10 additions and 6 deletions

View File

@@ -2271,7 +2271,11 @@ public class ScreenPanel5 extends Panel {
}
boolean getLaserState() throws Exception {
return (Epics.get("SIN-TIMAST-TMA:Beam-Las-Delay-Sel", Integer.class) == 0);
try{
return (Epics.get("SIN-TIMAST-TMA:Beam-Las-Delay-Sel", Integer.class) == 0);
}catch (Exception ex){
return false;
}
}
void elog(String logbook, String title, String message, String[] attachments) throws Exception {