summaryrefslogtreecommitdiffstats
path: root/libraries/launcher/org/multimc/ParseException.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/launcher/org/multimc/ParseException.java')
-rw-r--r--libraries/launcher/org/multimc/ParseException.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/libraries/launcher/org/multimc/ParseException.java b/libraries/launcher/org/multimc/ParseException.java
index 9a8fe521..e9c84f6e 100644
--- a/libraries/launcher/org/multimc/ParseException.java
+++ b/libraries/launcher/org/multimc/ParseException.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2012-2018 MultiMC Contributors
+ * Copyright 2012-2019 MultiMC Contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -18,5 +18,8 @@ package org.multimc;
public class ParseException extends java.lang.Exception
{
-
+ public ParseException() { super(); }
+ public ParseException(String message) {
+ super(message);
+ }
}