Index: trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/JFCLogParser.java
===================================================================
--- trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/JFCLogParser.java	(revision 758)
+++ trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/JFCLogParser.java	(revision 766)
@@ -8,5 +8,4 @@
 import java.io.InputStreamReader;
 import java.io.UnsupportedEncodingException;
-import java.security.InvalidParameterException;
 import java.util.ArrayList;
 import java.util.Collection;
@@ -197,5 +196,5 @@
     public void parseFile(String filename) {
         if (filename == null) {
-            throw new InvalidParameterException("filename must not be null");
+            throw new IllegalArgumentException("filename must not be null");
         }
 
@@ -213,5 +212,5 @@
     public void parseFile(File file) {
         if (file == null) {
-            throw new InvalidParameterException("file must not be null");
+            throw new IllegalArgumentException("file must not be null");
         }
 
Index: trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/commands/CMDparseDirJFC.java
===================================================================
--- trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/commands/CMDparseDirJFC.java	(revision 758)
+++ trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/commands/CMDparseDirJFC.java	(revision 766)
@@ -2,5 +2,4 @@
 
 import java.io.File;
-import java.security.InvalidParameterException;
 import java.util.Collection;
 import java.util.List;
@@ -44,5 +43,5 @@
         }
         catch (Exception e) {
-            throw new InvalidParameterException();
+            throw new IllegalArgumentException();
         }
 
Index: trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/commands/CMDparseJFC.java
===================================================================
--- trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/commands/CMDparseJFC.java	(revision 758)
+++ trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/commands/CMDparseJFC.java	(revision 766)
@@ -1,5 +1,4 @@
 package de.ugoe.cs.quest.plugin.jfc.commands;
 
-import java.security.InvalidParameterException;
 import java.util.Collection;
 import java.util.List;
@@ -39,5 +38,5 @@
 			}
 		} catch (Exception e) {
-			throw new InvalidParameterException();
+			throw new IllegalArgumentException();
 		}
 		
Index: trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/commands/CMDpreprocessDirJFC.java
===================================================================
--- trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/commands/CMDpreprocessDirJFC.java	(revision 758)
+++ trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/commands/CMDpreprocessDirJFC.java	(revision 766)
@@ -9,5 +9,4 @@
 import java.io.OutputStreamWriter;
 import java.io.UnsupportedEncodingException;
-import java.security.InvalidParameterException;
 import java.util.List;
 import java.util.logging.Level;
@@ -42,5 +41,5 @@
 			targetPath = (String) parameters.get(1);
 		} catch (Exception e) {
-			throw new InvalidParameterException();
+			throw new IllegalArgumentException();
 		}
 
Index: trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/commands/CMDpreprocessJFC.java
===================================================================
--- trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/commands/CMDpreprocessJFC.java	(revision 758)
+++ trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/commands/CMDpreprocessJFC.java	(revision 766)
@@ -9,5 +9,4 @@
 import java.io.OutputStreamWriter;
 import java.io.UnsupportedEncodingException;
-import java.security.InvalidParameterException;
 import java.util.List;
 
@@ -41,5 +40,5 @@
 			target = (String) parameters.get(1);
 		} catch (Exception e) {
-			throw new InvalidParameterException();
+			throw new IllegalArgumentException();
 		}
 
