Updates for 0.9.5
[debian/openrocket] / src / net / sf / openrocket / simulation / SimulationConditions.java
index 8b79bfbc9ef303e4db2618dcafb1e58b2e9d8501..da407772aba8b324517ced8167bc80ecd165adec 100644 (file)
@@ -9,6 +9,7 @@ import javax.swing.event.ChangeListener;
 import net.sf.openrocket.aerodynamics.AtmosphericModel;
 import net.sf.openrocket.aerodynamics.ExtendedISAModel;
 import net.sf.openrocket.rocketcomponent.Rocket;
+import net.sf.openrocket.util.BugException;
 import net.sf.openrocket.util.ChangeSource;
 import net.sf.openrocket.util.MathUtil;
 
@@ -321,7 +322,7 @@ public class SimulationConditions implements ChangeSource, Cloneable {
                        copy.listeners = new ArrayList<ChangeListener>();
                        return copy;
                } catch (CloneNotSupportedException e) {
-                       throw new RuntimeException(e);
+                       throw new BugException(e);
                }
        }