aboutsummaryrefslogtreecommitdiff
path: root/libraries/launcher/org/prismlauncher/exception/ParameterNotFoundException.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/launcher/org/prismlauncher/exception/ParameterNotFoundException.java')
-rw-r--r--libraries/launcher/org/prismlauncher/exception/ParameterNotFoundException.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/libraries/launcher/org/prismlauncher/exception/ParameterNotFoundException.java b/libraries/launcher/org/prismlauncher/exception/ParameterNotFoundException.java
index 524076ff..e9abc5ee 100644
--- a/libraries/launcher/org/prismlauncher/exception/ParameterNotFoundException.java
+++ b/libraries/launcher/org/prismlauncher/exception/ParameterNotFoundException.java
@@ -38,11 +38,9 @@
package org.prismlauncher.exception;
public final class ParameterNotFoundException extends IllegalArgumentException {
-
private static final long serialVersionUID = 1L;
public ParameterNotFoundException(String key) {
super(String.format("Required parameter '%s' was not found", key));
}
-
}