Updates for 0.9.5
[debian/openrocket] / src / net / sf / openrocket / simulation / SimulationStatus.java
index 4d05cbf160007494b1db3fd8ed527700bf994bd1..4ebf020bb43b04a94237dce5c77cc0d72886d8a2 100644 (file)
@@ -8,6 +8,7 @@ import net.sf.openrocket.aerodynamics.WarningSet;
 import net.sf.openrocket.aerodynamics.WindSimulator;
 import net.sf.openrocket.rocketcomponent.Configuration;
 import net.sf.openrocket.rocketcomponent.RecoveryDevice;
+import net.sf.openrocket.util.BugException;
 import net.sf.openrocket.util.Coordinate;
 
 
@@ -66,7 +67,7 @@ public class SimulationStatus implements Cloneable {
                try {
                        return (SimulationStatus) super.clone();
                } catch (CloneNotSupportedException e) {
-                       throw new RuntimeException("BUG:  CloneNotSupportedException?!?",e);
+                       throw new BugException("BUG:  CloneNotSupportedException?!?",e);
                }
        }
 }