diff options
Diffstat (limited to 'netx/net/sourceforge/jnlp/JNLPMatcherException.java')
-rw-r--r-- | netx/net/sourceforge/jnlp/JNLPMatcherException.java | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/netx/net/sourceforge/jnlp/JNLPMatcherException.java b/netx/net/sourceforge/jnlp/JNLPMatcherException.java new file mode 100644 index 0000000..11e7e39 --- /dev/null +++ b/netx/net/sourceforge/jnlp/JNLPMatcherException.java @@ -0,0 +1,16 @@ +package net.sourceforge.jnlp; + +public class JNLPMatcherException extends Exception +{ + private static final long serialVersionUID = 1L; + + public JNLPMatcherException(String message) + { + super(message); + } + + public JNLPMatcherException(String message, Throwable cause) + { + super(message, cause); + } +} |