From 6a7cfefbdc81050e03cc462ae24488e8ffccd8ad Mon Sep 17 00:00:00 2001 From: JoePfeiffer Date: Sun, 24 Dec 2023 21:01:17 -0700 Subject: [PATCH] This Exception class never was used! --- .../SimulationNotSupportedException.java | 30 ------------------- 1 file changed, 30 deletions(-) delete mode 100644 core/src/net/sf/openrocket/simulation/exception/SimulationNotSupportedException.java diff --git a/core/src/net/sf/openrocket/simulation/exception/SimulationNotSupportedException.java b/core/src/net/sf/openrocket/simulation/exception/SimulationNotSupportedException.java deleted file mode 100644 index 66618258f..000000000 --- a/core/src/net/sf/openrocket/simulation/exception/SimulationNotSupportedException.java +++ /dev/null @@ -1,30 +0,0 @@ -package net.sf.openrocket.simulation.exception; - - -/** - * A exception that signifies that the attempted simulation is not supported. - * The reason for not being supported may be due to unsupported combination of - * simulator/calculator, unsupported rocket structure or other reasons. - *

- * This exception signifies a fatal problem in the simulation; for non-fatal conditions - * add a warning to the simulation results. - * - * @author Sampo Niskanen - */ -public class SimulationNotSupportedException extends SimulationException { - - public SimulationNotSupportedException() { - } - - public SimulationNotSupportedException(String message) { - super(message); - } - - public SimulationNotSupportedException(Throwable cause) { - super(cause); - } - - public SimulationNotSupportedException(String message, Throwable cause) { - super(message, cause); - } -}