changeset 460:6f1d7f30246a

Added forgotten file: IllegalResourceDescriptorException
author Adam Domurad <adomurad@redhat.com>
date Mon, 09 Jul 2012 11:01:25 -0400
parents 138e2837d0e5
children fbda46a69fb8
files netx/net/sourceforge/jnlp/cache/IllegalResourceDescriptorException.java
diffstat 1 files changed, 13 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/netx/net/sourceforge/jnlp/cache/IllegalResourceDescriptorException.java	Mon Jul 09 11:01:25 2012 -0400
@@ -0,0 +1,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);
+    }
+}