Skip to content

Commit

Permalink
LPS-39096 We can change the API on master, there's no need for Runtim…
Browse files Browse the repository at this point in the history
…eException
  • Loading branch information
zsoltbalogh authored and brianchandotcom committed Aug 22, 2013
1 parent 34bb596 commit bde2c03
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public void init() throws PortletException {
filePath = getInitParameter("file-path");

if (Validator.isNull(filePath)) {
throw new RuntimeException("file-path parameter must be declared");
throw new PortletException("file-path parameter must be declared");
}
else if (filePath.contains(StringPool.BACK_SLASH) ||
filePath.contains(StringPool.DOUBLE_SLASH) ||
Expand Down

0 comments on commit bde2c03

Please sign in to comment.