Index: trunk/src/atmsdriver/model/Highways.java
===================================================================
--- trunk/src/atmsdriver/model/Highways.java	(revision 127)
+++ trunk/src/atmsdriver/model/Highways.java	(revision 128)
@@ -27,4 +27,5 @@
 import org.w3c.dom.Document;
 import org.w3c.dom.Element;
+import tmcsim.common.SimulationException;
 
 /** The Highways class aggregates all Highway instances within a geographic
@@ -209,5 +210,5 @@
      */
 
-    public void writeToFEP() {
+    public void writeToFEP() throws SimulationException {
         try {
             Socket sock = new Socket(FEPHostName /*"192.168.251.130"*/, 8080);
@@ -218,4 +219,5 @@
             Logger.getLogger(Highways.class.getName()).log(Level.SEVERE, null, ex);
             System.out.println("Highway Model failed writing to FEPSim.");
+            throw new SimulationException(SimulationException.BINDING);
         }
     }
