Ignore:
Timestamp:
09/04/12 17:15:28 (12 years ago)
Author:
sherbold
Message:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/JFCLogParser.java

    r743 r766  
    88import java.io.InputStreamReader; 
    99import java.io.UnsupportedEncodingException; 
    10 import java.security.InvalidParameterException; 
    1110import java.util.ArrayList; 
    1211import java.util.Collection; 
     
    197196    public void parseFile(String filename) { 
    198197        if (filename == null) { 
    199             throw new InvalidParameterException("filename must not be null"); 
     198            throw new IllegalArgumentException("filename must not be null"); 
    200199        } 
    201200 
     
    213212    public void parseFile(File file) { 
    214213        if (file == null) { 
    215             throw new InvalidParameterException("file must not be null"); 
     214            throw new IllegalArgumentException("file must not be null"); 
    216215        } 
    217216 
Note: See TracChangeset for help on using the changeset viewer.