bug fixes
[debian/openrocket] / src / net / sf / openrocket / simulation / exception / SimulationCalculationException.java
index 3bd61154e8a8baaf2e66f8bcf6323330668b970b..40f863210ac64bdc202f2eed686caedb0270d07d 100644 (file)
@@ -9,22 +9,18 @@ package net.sf.openrocket.simulation.exception;
 public class SimulationCalculationException extends SimulationException {
        
        public SimulationCalculationException() {
-               // TODO Auto-generated constructor stub
        }
        
        public SimulationCalculationException(String message) {
                super(message);
-               // TODO Auto-generated constructor stub
        }
        
        public SimulationCalculationException(Throwable cause) {
                super(cause);
-               // TODO Auto-generated constructor stub
        }
        
        public SimulationCalculationException(String message, Throwable cause) {
                super(message, cause);
-               // TODO Auto-generated constructor stub
        }
        
 }