aboutsummaryrefslogtreecommitdiffstats
path: root/netx/net/sourceforge/jnlp/NullJnlpFileException.java
blob: 9c67f619609756bdb0f431cc3fcc87b03ee33ee6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package net.sourceforge.jnlp;

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author jvanek
 */
public class NullJnlpFileException extends NullPointerException {

    public NullJnlpFileException() {
        super();
    }

    public NullJnlpFileException(String s) {
        super(s);
    }

}