X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fnet%2Fsf%2Fopenrocket%2Fsimulation%2Fexception%2FSimulationLaunchException.java;h=df9f3862d696d05cefbea81ce9a16bffa5cee98f;hb=8320c04afa30e2aa0150adc870d02abeedb01066;hp=1c840e35ffdb344cbd66177f57c77315f8e21b48;hpb=6460090e9ec07b12234369583032d02d7c5ed3b1;p=debian%2Fopenrocket diff --git a/src/net/sf/openrocket/simulation/exception/SimulationLaunchException.java b/src/net/sf/openrocket/simulation/exception/SimulationLaunchException.java index 1c840e35..df9f3862 100644 --- a/src/net/sf/openrocket/simulation/exception/SimulationLaunchException.java +++ b/src/net/sf/openrocket/simulation/exception/SimulationLaunchException.java @@ -7,21 +7,13 @@ package net.sf.openrocket.simulation.exception; * @author Sampo Niskanen */ public class SimulationLaunchException extends SimulationException { - - public SimulationLaunchException() { - - } - + public SimulationLaunchException(String message) { super(message); } - - public SimulationLaunchException(Throwable cause) { - super(cause); - } - + public SimulationLaunchException(String message, Throwable cause) { super(message, cause); } - + }