GH-2238 fix issues with whitespace/newlines in folder and instance names

This commit is contained in:
Petr Mrázek
2018-11-01 00:18:49 +01:00
parent d5037d4f79
commit 59e2f52db7
4 changed files with 9 additions and 6 deletions

View File

@ -52,11 +52,11 @@ public class EntryPoint
else if (pair[0].equals("abort"))
return Action.Abort;
else throw new ParseException();
else throw new ParseException("Error while parsing:" + pair[0]);
}
if(pair.length != 2)
throw new ParseException();
throw new ParseException("Pair length is not 2.");
String command = pair[0];
String param = pair[1];
@ -71,7 +71,7 @@ public class EntryPoint
return Action.Proceed;
}
else
throw new ParseException();
throw new ParseException("Invalid launcher type: " + param);
}
m_params.add(command, param);

View File

@ -18,5 +18,8 @@ package org.multimc;
public class ParseException extends java.lang.Exception
{
public ParseException() { super(); }
public ParseException(String message) {
super(message);
}
}