diff options
Diffstat (limited to 'netx/net/sourceforge/jnlp/NullJnlpFileException.java')
-rw-r--r-- | netx/net/sourceforge/jnlp/NullJnlpFileException.java | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/netx/net/sourceforge/jnlp/NullJnlpFileException.java b/netx/net/sourceforge/jnlp/NullJnlpFileException.java new file mode 100644 index 0000000..9c67f61 --- /dev/null +++ b/netx/net/sourceforge/jnlp/NullJnlpFileException.java @@ -0,0 +1,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); + } + +} |