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

Legend:

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

    r582 r766  
    1111import java.net.URL; 
    1212import java.net.URLClassLoader; 
    13 import java.security.InvalidParameterException; 
    1413import java.util.Collection; 
    1514import java.util.Collections; 
     
    5251         *            handle of the directory; in case the handle is 
    5352         *            <code>null</code> or does not describe a directory, an 
    54          *            {@link InvalidParameterException} is thrown 
     53         *            {@link IllegalArgumentException} is thrown 
    5554         */ 
    5655        public PluginLoader(File pluginDir) { 
    5756                if (pluginDir == null) { 
    58                         throw new InvalidParameterException( 
     57                        throw new IllegalArgumentException( 
    5958                                        "Parameter pluginDir must not be null!"); 
    6059                } 
    6160                if (!pluginDir.isDirectory()) { 
    62                         throw new InvalidParameterException("File " + pluginDir.getPath() 
     61                        throw new IllegalArgumentException("File " + pluginDir.getPath() 
    6362                                        + " is not a directory"); 
    6463                } 
Note: See TracChangeset for help on using the changeset viewer.