Updates for 0.9.5
[debian/openrocket] / src / net / sf / openrocket / document / StorageOptions.java
index 3a817ca529c9ed8eaaccf0973245ed29acb3acb1..7e1186c1e21222a8882737ba7ca5a6c641987b72 100644 (file)
@@ -1,5 +1,7 @@
 package net.sf.openrocket.document;
 
+import net.sf.openrocket.util.BugException;
+
 public class StorageOptions implements Cloneable {
        
        public static final double SIMULATION_DATA_NONE = Double.POSITIVE_INFINITY;
@@ -45,7 +47,7 @@ public class StorageOptions implements Cloneable {
                try {
                        return (StorageOptions)super.clone();
                } catch (CloneNotSupportedException e) {
-                       throw new RuntimeException("CloneNotSupportedException?!?", e);
+                       throw new BugException("CloneNotSupportedException?!?", e);
                }
        }
 }