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

Legend:

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

    r655 r766  
    22 
    33import java.io.Serializable; 
    4 import java.security.InvalidParameterException; 
    54import java.util.Collection; 
    65import java.util.HashSet; 
     
    7170    public Trie(Trie<T> other) { 
    7271        if (other == null) { 
    73             throw new InvalidParameterException("other trie must not be null"); 
     72            throw new IllegalArgumentException("other trie must not be null"); 
    7473        } 
    7574        rootNode = new TrieNode<T>(other.rootNode); 
Note: See TracChangeset for help on using the changeset viewer.