Changeset 228 in tmcsimulator for trunk/src/atmsdriver/model


Ignore:
Timestamp:
11/06/2017 03:27:20 PM (8 years ago)
Author:
jdalbey
Message:

System Tests updated to work with new integrated Traffic Mgr. All system tests now passing.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/atmsdriver/model/Highways.java

    r212 r228  
    350350            // close the socket 
    351351            sock.close(); 
     352        } catch (java.net.ConnectException ex) 
     353        { 
     354            //Logger.getLogger(Highways.class.getName()).log(Level.SEVERE, null, ex); 
     355            System.out.println("writeToFEP() can't connect, no data sent to FEP."); 
     356            throw new SimulationException(SimulationException.BINDING); 
    352357        } catch (IOException ex) 
    353358        { 
    354             Logger.getLogger(Highways.class.getName()).log(Level.SEVERE, null, ex); 
     359            //Logger.getLogger(Highways.class.getName()).log(Level.SEVERE, null, ex); 
    355360            System.out.println("Highway Model failed writing to FEPSim."); 
    356361            throw new SimulationException(SimulationException.BINDING); 
Note: See TracChangeset for help on using the changeset viewer.