aboutsummaryrefslogtreecommitdiffstats
path: root/netx/net/sourceforge/jnlp/cache/IllegalResourceDescriptorException.java
blob: 907ebdcdbd2e6aeae36a731d52699f40cc5e18c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package net.sourceforge.jnlp.cache;

@SuppressWarnings("serial")
public class IllegalResourceDescriptorException extends IllegalArgumentException {
    /**
     * Constructs a <code>IllegalResourceDescriptorException</code> with the
     * specified detail message.
     * @param msg the detail message.
     */
    public IllegalResourceDescriptorException(String msg) {
        super(msg);
    }
}