Updates for 0.9.5
[debian/openrocket] / src / net / sf / openrocket / aerodynamics / AtmosphericConditions.java
index c36c525f2920ef206e8203ff5739f81ceadf7c4f..d2e910ea783e5d98c4f8e93e1364bf69a5a2b255 100644 (file)
@@ -1,5 +1,7 @@
 package net.sf.openrocket.aerodynamics;
 
+import net.sf.openrocket.util.BugException;
+
 public class AtmosphericConditions implements Cloneable {
 
        /** Specific gas constant of dry air. */
@@ -92,7 +94,7 @@ public class AtmosphericConditions implements Cloneable {
                try {
                        return (AtmosphericConditions) super.clone();
                } catch (CloneNotSupportedException e) {
-                       throw new RuntimeException("BUG:  CloneNotSupportedException encountered!");
+                       throw new BugException("BUG:  CloneNotSupportedException encountered!");
                }
        }