[jboss-svn-commits] JBL Code SVN: r8899 - labs/jbossesb/trunk/product/core/rosetta/src/org/jboss/soa/esb/addressing.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Thu Jan 18 11:29:20 EST 2007


Author: mark.little at jboss.com
Date: 2007-01-18 11:29:20 -0500 (Thu, 18 Jan 2007)
New Revision: 8899

Added:
   labs/jbossesb/trunk/product/core/rosetta/src/org/jboss/soa/esb/addressing/MalformedEPRException.java
Log:


Copied: labs/jbossesb/trunk/product/core/rosetta/src/org/jboss/soa/esb/addressing/MalformedEPRException.java (from rev 8897, labs/jbossesb/workspace/mlittle/harden/product/core/rosetta/src/org/jboss/soa/esb/addressing/MalformedEPRException.java)
===================================================================
--- labs/jbossesb/trunk/product/core/rosetta/src/org/jboss/soa/esb/addressing/MalformedEPRException.java	                        (rev 0)
+++ labs/jbossesb/trunk/product/core/rosetta/src/org/jboss/soa/esb/addressing/MalformedEPRException.java	2007-01-18 16:29:20 UTC (rev 8899)
@@ -0,0 +1,51 @@
+package org.jboss.soa.esb.addressing;
+
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2006, JBoss Inc., and others contributors as indicated 
+ * by the @authors tag. All rights reserved. 
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors. 
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A 
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
+ * MA  02110-1301, USA.
+ * 
+ * (C) 2005-2006,
+ * @author mark.little at jboss.com
+ */
+
+/**
+ * Thrown if the EPR is not well formed, e.g., contains incorrect information.
+ */
+
+public class MalformedEPRException extends Exception
+{
+	public static final long serialVersionUID = 0xE;
+	
+	public MalformedEPRException()
+	{
+		super();
+	}
+
+	public MalformedEPRException(String s)
+	{
+		super(s);
+	}
+	
+	public MalformedEPRException(String s, Throwable ex)
+	{
+		super(s, ex);
+	}
+
+	public MalformedEPRException(Throwable ex)
+	{
+		super(ex);
+	}
+}




More information about the jboss-svn-commits mailing list