aboutsummaryrefslogtreecommitdiffstats
path: root/netx/net/sourceforge/jnlp/JNLPMatcherException.java
diff options
context:
space:
mode:
authorSaad Mohammad <[email protected]>2011-07-19 12:14:35 -0400
committerSaad Mohammad <[email protected]>2011-07-19 12:14:35 -0400
commitc5d960db80e654d2203401414fd96b709f704648 (patch)
treee39002866d8d10c5a07c2a85a269849089957dd3 /netx/net/sourceforge/jnlp/JNLPMatcherException.java
parent6f78ede87c47e097c6aee5c5ebaaf7b0dc5f7544 (diff)
Added algorithm that compares signed JNLP application/template file with launching JNLP file (with test case and its resources)
Diffstat (limited to 'netx/net/sourceforge/jnlp/JNLPMatcherException.java')
-rw-r--r--netx/net/sourceforge/jnlp/JNLPMatcherException.java16
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);
+ }
+}