[jboss-cvs] JBossAS SVN: r65831 - in projects/metadata/trunk/src/main/java/org/jboss: metadata and 1 other directory.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Thu Oct 4 04:45:15 EDT 2007
Author: scott.stark at jboss.org
Date: 2007-10-04 04:45:15 -0400 (Thu, 04 Oct 2007)
New Revision: 65831
Removed:
projects/metadata/trunk/src/main/java/org/jboss/deployment/DeploymentException.java
Modified:
projects/metadata/trunk/src/main/java/org/jboss/metadata/OldMetaData.java
Log:
Drop the DeploymentException class as it has to come from the server
Deleted: projects/metadata/trunk/src/main/java/org/jboss/deployment/DeploymentException.java
===================================================================
--- projects/metadata/trunk/src/main/java/org/jboss/deployment/DeploymentException.java 2007-10-04 08:42:18 UTC (rev 65830)
+++ projects/metadata/trunk/src/main/java/org/jboss/deployment/DeploymentException.java 2007-10-04 08:45:15 UTC (rev 65831)
@@ -1,53 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY 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 along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.deployment;
-
-
-/**
- * A DeploymentException.
- *
- * @author <a href="alex at jboss.com">Alexey Loubyansky</a>
- * @version $Revision: 1.1 $
- */
-public class DeploymentException extends Exception
-{
-
- public DeploymentException()
- {
- super();
- }
-
- public DeploymentException(String message, Throwable cause)
- {
- super(message, cause);
- }
-
- public DeploymentException(String message)
- {
- super(message);
- }
-
- public DeploymentException(Throwable cause)
- {
- super(cause);
- }
-}
Modified: projects/metadata/trunk/src/main/java/org/jboss/metadata/OldMetaData.java
===================================================================
--- projects/metadata/trunk/src/main/java/org/jboss/metadata/OldMetaData.java 2007-10-04 08:42:18 UTC (rev 65830)
+++ projects/metadata/trunk/src/main/java/org/jboss/metadata/OldMetaData.java 2007-10-04 08:45:15 UTC (rev 65831)
@@ -21,7 +21,6 @@
*/
package org.jboss.metadata;
-import org.jboss.deployment.DeploymentException;
import org.jboss.metadata.spi.MetaData;
import org.w3c.dom.Element;
@@ -122,13 +121,13 @@
}
@Override
- public void importEjbJarXml(Element element) throws DeploymentException
+ public void importEjbJarXml(Element element)
{
throw new UnsupportedOperationException("importEjbJarXml");
}
@Override
- public void importJbossXml(Element element) throws DeploymentException
+ public void importJbossXml(Element element)
{
throw new UnsupportedOperationException("importJbossXml");
}
More information about the jboss-cvs-commits
mailing list