[webbeans-commits] Webbeans SVN: r146 - ri/trunk/webbeans-api/src/main/java/javax/webbeans.

webbeans-commits at lists.jboss.org webbeans-commits at lists.jboss.org
Sat Oct 25 10:59:27 EDT 2008


Author: pete.muir at jboss.org
Date: 2008-10-25 10:59:27 -0400 (Sat, 25 Oct 2008)
New Revision: 146

Added:
   ri/trunk/webbeans-api/src/main/java/javax/webbeans/AmbiguousDependencyException.java
   ri/trunk/webbeans-api/src/main/java/javax/webbeans/CreationException.java
   ri/trunk/webbeans-api/src/main/java/javax/webbeans/DefinitionException.java
   ri/trunk/webbeans-api/src/main/java/javax/webbeans/InconsistentSpecializationException.java
   ri/trunk/webbeans-api/src/main/java/javax/webbeans/NonexistentConstructorException.java
   ri/trunk/webbeans-api/src/main/java/javax/webbeans/NonexistentFieldException.java
   ri/trunk/webbeans-api/src/main/java/javax/webbeans/NonexistentMemberException.java
   ri/trunk/webbeans-api/src/main/java/javax/webbeans/NonexistentMethodException.java
   ri/trunk/webbeans-api/src/main/java/javax/webbeans/NonexistentTypeException.java
   ri/trunk/webbeans-api/src/main/java/javax/webbeans/NullableDependencyException.java
   ri/trunk/webbeans-api/src/main/java/javax/webbeans/UnproxyableDependencyException.java
   ri/trunk/webbeans-api/src/main/java/javax/webbeans/UnremovedException.java
   ri/trunk/webbeans-api/src/main/java/javax/webbeans/UnsatisfiedDependencyException.java
   ri/trunk/webbeans-api/src/main/java/javax/webbeans/UnserializableDependencyException.java
Modified:
   ri/trunk/webbeans-api/src/main/java/javax/webbeans/ContextNotActiveException.java
   ri/trunk/webbeans-api/src/main/java/javax/webbeans/DeploymentException.java
   ri/trunk/webbeans-api/src/main/java/javax/webbeans/DuplicateBindingTypeException.java
   ri/trunk/webbeans-api/src/main/java/javax/webbeans/ExecutionException.java
   ri/trunk/webbeans-api/src/main/java/javax/webbeans/ObserverException.java
Log:
Add/fix all exceptions

Added: ri/trunk/webbeans-api/src/main/java/javax/webbeans/AmbiguousDependencyException.java
===================================================================
--- ri/trunk/webbeans-api/src/main/java/javax/webbeans/AmbiguousDependencyException.java	                        (rev 0)
+++ ri/trunk/webbeans-api/src/main/java/javax/webbeans/AmbiguousDependencyException.java	2008-10-25 14:59:27 UTC (rev 146)
@@ -0,0 +1,47 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,  
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+
+package javax.webbeans;
+
+/**
+ * 
+ * @author Pete Muir
+ */
+public class AmbiguousDependencyException extends DeploymentException
+{
+
+   public AmbiguousDependencyException()
+   {
+   }
+
+   public AmbiguousDependencyException(String message, Throwable throwable)
+   {
+      super(message, throwable);
+   }
+
+   public AmbiguousDependencyException(String message)
+   {
+      super(message);
+   }
+
+   public AmbiguousDependencyException(Throwable throwable)
+   {
+      super(throwable);
+   }
+
+}


Property changes on: ri/trunk/webbeans-api/src/main/java/javax/webbeans/AmbiguousDependencyException.java
___________________________________________________________________
Name: svn:mime-type
   + text/plain

Modified: ri/trunk/webbeans-api/src/main/java/javax/webbeans/ContextNotActiveException.java
===================================================================
--- ri/trunk/webbeans-api/src/main/java/javax/webbeans/ContextNotActiveException.java	2008-10-25 11:54:03 UTC (rev 145)
+++ ri/trunk/webbeans-api/src/main/java/javax/webbeans/ContextNotActiveException.java	2008-10-25 14:59:27 UTC (rev 146)
@@ -24,11 +24,12 @@
  * @author Shane Bryzak
  */
 
-public class ContextNotActiveException extends RuntimeException
+public class ContextNotActiveException extends ExecutionException
 {
 
    public ContextNotActiveException()
    {
+      super();
    }
 
    public ContextNotActiveException(String message)

Added: ri/trunk/webbeans-api/src/main/java/javax/webbeans/CreationException.java
===================================================================
--- ri/trunk/webbeans-api/src/main/java/javax/webbeans/CreationException.java	                        (rev 0)
+++ ri/trunk/webbeans-api/src/main/java/javax/webbeans/CreationException.java	2008-10-25 14:59:27 UTC (rev 146)
@@ -0,0 +1,48 @@
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+* http://www.apache.org/licenses/LICENSE-2.0
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,  
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+package javax.webbeans;
+
+/**
+ * 
+ * @author Pete Muir
+ */
+
+public class CreationException extends ExecutionException
+{
+
+   public CreationException()
+   {
+      
+   }
+
+   public CreationException(String message)
+   {
+      super(message);
+   }
+
+   public CreationException(Throwable cause)
+   {
+      super(cause);
+   }
+
+   public CreationException(String message, Throwable cause)
+   {
+      super(message, cause);
+   }
+
+}


Property changes on: ri/trunk/webbeans-api/src/main/java/javax/webbeans/CreationException.java
___________________________________________________________________
Name: svn:mime-type
   + text/plain

Added: ri/trunk/webbeans-api/src/main/java/javax/webbeans/DefinitionException.java
===================================================================
--- ri/trunk/webbeans-api/src/main/java/javax/webbeans/DefinitionException.java	                        (rev 0)
+++ ri/trunk/webbeans-api/src/main/java/javax/webbeans/DefinitionException.java	2008-10-25 14:59:27 UTC (rev 146)
@@ -0,0 +1,49 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,  
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package javax.webbeans;
+
+/**
+ * 
+ * @author Pete Muir
+ */
+public class DefinitionException extends RuntimeException
+{
+
+   public DefinitionException()
+   {
+      super();
+   }
+
+   public DefinitionException(String message, Throwable throwable)
+   {
+      super(message, throwable);
+   }
+
+   public DefinitionException(String message)
+   {
+      super(message);
+   }
+
+   public DefinitionException(Throwable throwable)
+   {
+      super(throwable);
+   }
+   
+   
+
+}


Property changes on: ri/trunk/webbeans-api/src/main/java/javax/webbeans/DefinitionException.java
___________________________________________________________________
Name: svn:mime-type
   + text/plain

Modified: ri/trunk/webbeans-api/src/main/java/javax/webbeans/DeploymentException.java
===================================================================
--- ri/trunk/webbeans-api/src/main/java/javax/webbeans/DeploymentException.java	2008-10-25 11:54:03 UTC (rev 145)
+++ ri/trunk/webbeans-api/src/main/java/javax/webbeans/DeploymentException.java	2008-10-25 14:59:27 UTC (rev 146)
@@ -1,5 +1,26 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,  
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 package javax.webbeans;
 
+/**
+ * 
+ * @author Pete Muir
+ */
 public class DeploymentException extends RuntimeException
 {
 
@@ -8,19 +29,21 @@
       super();
    }
 
-   public DeploymentException(String arg0, Throwable arg1)
+   public DeploymentException(String message, Throwable throwable)
    {
-      super(arg0, arg1);
+      super(message, throwable);
    }
 
-   public DeploymentException(String arg0)
+   public DeploymentException(String message)
    {
-      super(arg0);
+      super(message);
    }
 
-   public DeploymentException(Throwable arg0)
+   public DeploymentException(Throwable throwable)
    {
-      super(arg0);
+      super(throwable);
    }
+   
+   
 
 }

Modified: ri/trunk/webbeans-api/src/main/java/javax/webbeans/DuplicateBindingTypeException.java
===================================================================
--- ri/trunk/webbeans-api/src/main/java/javax/webbeans/DuplicateBindingTypeException.java	2008-10-25 11:54:03 UTC (rev 145)
+++ ri/trunk/webbeans-api/src/main/java/javax/webbeans/DuplicateBindingTypeException.java	2008-10-25 14:59:27 UTC (rev 146)
@@ -22,7 +22,7 @@
  * 
  * @author David Allen
  */
-public class DuplicateBindingTypeException extends RuntimeException
+public class DuplicateBindingTypeException extends ExecutionException
 {
 
    private static final long serialVersionUID = 4194175477451120383L;

Modified: ri/trunk/webbeans-api/src/main/java/javax/webbeans/ExecutionException.java
===================================================================
--- ri/trunk/webbeans-api/src/main/java/javax/webbeans/ExecutionException.java	2008-10-25 11:54:03 UTC (rev 145)
+++ ri/trunk/webbeans-api/src/main/java/javax/webbeans/ExecutionException.java	2008-10-25 14:59:27 UTC (rev 146)
@@ -1,5 +1,27 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,  
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+
 package javax.webbeans;
 
+/**
+ * 
+ * @author Pete Muir
+ */
 public class ExecutionException extends RuntimeException
 {
 

Added: ri/trunk/webbeans-api/src/main/java/javax/webbeans/InconsistentSpecializationException.java
===================================================================
--- ri/trunk/webbeans-api/src/main/java/javax/webbeans/InconsistentSpecializationException.java	                        (rev 0)
+++ ri/trunk/webbeans-api/src/main/java/javax/webbeans/InconsistentSpecializationException.java	2008-10-25 14:59:27 UTC (rev 146)
@@ -0,0 +1,50 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,  
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+
+package javax.webbeans;
+
+/**
+ * 
+ * @author Pete Muir
+ */
+public class InconsistentSpecializationException extends DeploymentException
+{
+
+   public InconsistentSpecializationException()
+   {
+      super();
+   }
+
+   public InconsistentSpecializationException(String message, Throwable throwable)
+   {
+      super(message, throwable);
+   }
+
+   public InconsistentSpecializationException(String message)
+   {
+      super(message);
+   }
+
+   public InconsistentSpecializationException(Throwable throwable)
+   {
+      super(throwable);
+   }
+
+   
+
+}


Property changes on: ri/trunk/webbeans-api/src/main/java/javax/webbeans/InconsistentSpecializationException.java
___________________________________________________________________
Name: svn:mime-type
   + text/plain

Added: ri/trunk/webbeans-api/src/main/java/javax/webbeans/NonexistentConstructorException.java
===================================================================
--- ri/trunk/webbeans-api/src/main/java/javax/webbeans/NonexistentConstructorException.java	                        (rev 0)
+++ ri/trunk/webbeans-api/src/main/java/javax/webbeans/NonexistentConstructorException.java	2008-10-25 14:59:27 UTC (rev 146)
@@ -0,0 +1,48 @@
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+* http://www.apache.org/licenses/LICENSE-2.0
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,  
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+package javax.webbeans;
+
+/**
+ * 
+ * @author Pete Muir
+ */
+
+public class NonexistentConstructorException extends DefinitionException
+{
+
+   public NonexistentConstructorException()
+   {
+      
+   }
+
+   public NonexistentConstructorException(String message)
+   {
+      super(message);
+   }
+
+   public NonexistentConstructorException(Throwable cause)
+   {
+      super(cause);
+   }
+
+   public NonexistentConstructorException(String message, Throwable cause)
+   {
+      super(message, cause);
+   }
+
+}


Property changes on: ri/trunk/webbeans-api/src/main/java/javax/webbeans/NonexistentConstructorException.java
___________________________________________________________________
Name: svn:mime-type
   + text/plain

Added: ri/trunk/webbeans-api/src/main/java/javax/webbeans/NonexistentFieldException.java
===================================================================
--- ri/trunk/webbeans-api/src/main/java/javax/webbeans/NonexistentFieldException.java	                        (rev 0)
+++ ri/trunk/webbeans-api/src/main/java/javax/webbeans/NonexistentFieldException.java	2008-10-25 14:59:27 UTC (rev 146)
@@ -0,0 +1,48 @@
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+* http://www.apache.org/licenses/LICENSE-2.0
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,  
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+package javax.webbeans;
+
+/**
+ * 
+ * @author Pete Muir
+ */
+
+public class NonexistentFieldException extends DefinitionException
+{
+
+   public NonexistentFieldException()
+   {
+      
+   }
+
+   public NonexistentFieldException(String message)
+   {
+      super(message);
+   }
+
+   public NonexistentFieldException(Throwable cause)
+   {
+      super(cause);
+   }
+
+   public NonexistentFieldException(String message, Throwable cause)
+   {
+      super(message, cause);
+   }
+
+}


Property changes on: ri/trunk/webbeans-api/src/main/java/javax/webbeans/NonexistentFieldException.java
___________________________________________________________________
Name: svn:mime-type
   + text/plain

Added: ri/trunk/webbeans-api/src/main/java/javax/webbeans/NonexistentMemberException.java
===================================================================
--- ri/trunk/webbeans-api/src/main/java/javax/webbeans/NonexistentMemberException.java	                        (rev 0)
+++ ri/trunk/webbeans-api/src/main/java/javax/webbeans/NonexistentMemberException.java	2008-10-25 14:59:27 UTC (rev 146)
@@ -0,0 +1,48 @@
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+* http://www.apache.org/licenses/LICENSE-2.0
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,  
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+package javax.webbeans;
+
+/**
+ * 
+ * @author Pete Muir
+ */
+
+public class NonexistentMemberException extends DefinitionException
+{
+
+   public NonexistentMemberException()
+   {
+      
+   }
+
+   public NonexistentMemberException(String message)
+   {
+      super(message);
+   }
+
+   public NonexistentMemberException(Throwable cause)
+   {
+      super(cause);
+   }
+
+   public NonexistentMemberException(String message, Throwable cause)
+   {
+      super(message, cause);
+   }
+
+}


Property changes on: ri/trunk/webbeans-api/src/main/java/javax/webbeans/NonexistentMemberException.java
___________________________________________________________________
Name: svn:mime-type
   + text/plain

Added: ri/trunk/webbeans-api/src/main/java/javax/webbeans/NonexistentMethodException.java
===================================================================
--- ri/trunk/webbeans-api/src/main/java/javax/webbeans/NonexistentMethodException.java	                        (rev 0)
+++ ri/trunk/webbeans-api/src/main/java/javax/webbeans/NonexistentMethodException.java	2008-10-25 14:59:27 UTC (rev 146)
@@ -0,0 +1,48 @@
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+* http://www.apache.org/licenses/LICENSE-2.0
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,  
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+package javax.webbeans;
+
+/**
+ * 
+ * @author Pete Muir
+ */
+
+public class NonexistentMethodException extends DefinitionException
+{
+
+   public NonexistentMethodException()
+   {
+      
+   }
+
+   public NonexistentMethodException(String message)
+   {
+      super(message);
+   }
+
+   public NonexistentMethodException(Throwable cause)
+   {
+      super(cause);
+   }
+
+   public NonexistentMethodException(String message, Throwable cause)
+   {
+      super(message, cause);
+   }
+
+}


Property changes on: ri/trunk/webbeans-api/src/main/java/javax/webbeans/NonexistentMethodException.java
___________________________________________________________________
Name: svn:mime-type
   + text/plain

Added: ri/trunk/webbeans-api/src/main/java/javax/webbeans/NonexistentTypeException.java
===================================================================
--- ri/trunk/webbeans-api/src/main/java/javax/webbeans/NonexistentTypeException.java	                        (rev 0)
+++ ri/trunk/webbeans-api/src/main/java/javax/webbeans/NonexistentTypeException.java	2008-10-25 14:59:27 UTC (rev 146)
@@ -0,0 +1,48 @@
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+* http://www.apache.org/licenses/LICENSE-2.0
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,  
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+package javax.webbeans;
+
+/**
+ * 
+ * @author Pete Muir
+ */
+
+public class NonexistentTypeException extends DefinitionException
+{
+
+   public NonexistentTypeException()
+   {
+      
+   }
+
+   public NonexistentTypeException(String message)
+   {
+      super(message);
+   }
+
+   public NonexistentTypeException(Throwable cause)
+   {
+      super(cause);
+   }
+
+   public NonexistentTypeException(String message, Throwable cause)
+   {
+      super(message, cause);
+   }
+
+}


Property changes on: ri/trunk/webbeans-api/src/main/java/javax/webbeans/NonexistentTypeException.java
___________________________________________________________________
Name: svn:mime-type
   + text/plain

Added: ri/trunk/webbeans-api/src/main/java/javax/webbeans/NullableDependencyException.java
===================================================================
--- ri/trunk/webbeans-api/src/main/java/javax/webbeans/NullableDependencyException.java	                        (rev 0)
+++ ri/trunk/webbeans-api/src/main/java/javax/webbeans/NullableDependencyException.java	2008-10-25 14:59:27 UTC (rev 146)
@@ -0,0 +1,50 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,  
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+
+package javax.webbeans;
+
+/**
+ * 
+ * @author Pete Muir
+ */
+public class NullableDependencyException extends DeploymentException
+{
+
+   public NullableDependencyException()
+   {
+      super();
+   }
+
+   public NullableDependencyException(String message, Throwable throwable)
+   {
+      super(message, throwable);
+   }
+
+   public NullableDependencyException(String message)
+   {
+      super(message);
+   }
+
+   public NullableDependencyException(Throwable throwable)
+   {
+      super(throwable);
+   }
+
+   
+
+}


Property changes on: ri/trunk/webbeans-api/src/main/java/javax/webbeans/NullableDependencyException.java
___________________________________________________________________
Name: svn:mime-type
   + text/plain

Modified: ri/trunk/webbeans-api/src/main/java/javax/webbeans/ObserverException.java
===================================================================
--- ri/trunk/webbeans-api/src/main/java/javax/webbeans/ObserverException.java	2008-10-25 11:54:03 UTC (rev 145)
+++ ri/trunk/webbeans-api/src/main/java/javax/webbeans/ObserverException.java	2008-10-25 14:59:27 UTC (rev 146)
@@ -22,7 +22,7 @@
  * @author Pete Muir
  */
 
-public class ObserverException extends RuntimeException
+public class ObserverException extends ExecutionException
 {
 
    public ObserverException()

Added: ri/trunk/webbeans-api/src/main/java/javax/webbeans/UnproxyableDependencyException.java
===================================================================
--- ri/trunk/webbeans-api/src/main/java/javax/webbeans/UnproxyableDependencyException.java	                        (rev 0)
+++ ri/trunk/webbeans-api/src/main/java/javax/webbeans/UnproxyableDependencyException.java	2008-10-25 14:59:27 UTC (rev 146)
@@ -0,0 +1,50 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,  
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+
+package javax.webbeans;
+
+/**
+ * 
+ * @author Pete Muir
+ */
+public class UnproxyableDependencyException extends DeploymentException
+{
+
+   public UnproxyableDependencyException()
+   {
+      super();
+   }
+
+   public UnproxyableDependencyException(String message, Throwable throwable)
+   {
+      super(message, throwable);
+   }
+
+   public UnproxyableDependencyException(String message)
+   {
+      super(message);
+   }
+
+   public UnproxyableDependencyException(Throwable throwable)
+   {
+      super(throwable);
+   }
+
+   
+
+}


Property changes on: ri/trunk/webbeans-api/src/main/java/javax/webbeans/UnproxyableDependencyException.java
___________________________________________________________________
Name: svn:mime-type
   + text/plain

Added: ri/trunk/webbeans-api/src/main/java/javax/webbeans/UnremovedException.java
===================================================================
--- ri/trunk/webbeans-api/src/main/java/javax/webbeans/UnremovedException.java	                        (rev 0)
+++ ri/trunk/webbeans-api/src/main/java/javax/webbeans/UnremovedException.java	2008-10-25 14:59:27 UTC (rev 146)
@@ -0,0 +1,48 @@
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+* http://www.apache.org/licenses/LICENSE-2.0
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,  
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+package javax.webbeans;
+
+/**
+ * 
+ * @author Pete Muir
+ */
+
+public class UnremovedException extends ExecutionException
+{
+
+   public UnremovedException()
+   {
+      
+   }
+
+   public UnremovedException(String message)
+   {
+      super(message);
+   }
+
+   public UnremovedException(Throwable cause)
+   {
+      super(cause);
+   }
+
+   public UnremovedException(String message, Throwable cause)
+   {
+      super(message, cause);
+   }
+
+}


Property changes on: ri/trunk/webbeans-api/src/main/java/javax/webbeans/UnremovedException.java
___________________________________________________________________
Name: svn:mime-type
   + text/plain

Added: ri/trunk/webbeans-api/src/main/java/javax/webbeans/UnsatisfiedDependencyException.java
===================================================================
--- ri/trunk/webbeans-api/src/main/java/javax/webbeans/UnsatisfiedDependencyException.java	                        (rev 0)
+++ ri/trunk/webbeans-api/src/main/java/javax/webbeans/UnsatisfiedDependencyException.java	2008-10-25 14:59:27 UTC (rev 146)
@@ -0,0 +1,50 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,  
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+
+package javax.webbeans;
+
+/**
+ * 
+ * @author Pete Muir
+ */
+public class UnsatisfiedDependencyException extends DeploymentException
+{
+
+   public UnsatisfiedDependencyException()
+   {
+      super();
+   }
+
+   public UnsatisfiedDependencyException(String message, Throwable throwable)
+   {
+      super(message, throwable);
+   }
+
+   public UnsatisfiedDependencyException(String message)
+   {
+      super(message);
+   }
+
+   public UnsatisfiedDependencyException(Throwable throwable)
+   {
+      super(throwable);
+   }
+
+   
+
+}


Property changes on: ri/trunk/webbeans-api/src/main/java/javax/webbeans/UnsatisfiedDependencyException.java
___________________________________________________________________
Name: svn:mime-type
   + text/plain

Added: ri/trunk/webbeans-api/src/main/java/javax/webbeans/UnserializableDependencyException.java
===================================================================
--- ri/trunk/webbeans-api/src/main/java/javax/webbeans/UnserializableDependencyException.java	                        (rev 0)
+++ ri/trunk/webbeans-api/src/main/java/javax/webbeans/UnserializableDependencyException.java	2008-10-25 14:59:27 UTC (rev 146)
@@ -0,0 +1,50 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,  
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+
+package javax.webbeans;
+
+/**
+ * 
+ * @author Pete Muir
+ */
+public class UnserializableDependencyException extends DeploymentException
+{
+
+   public UnserializableDependencyException()
+   {
+      super();
+   }
+
+   public UnserializableDependencyException(String message, Throwable throwable)
+   {
+      super(message, throwable);
+   }
+
+   public UnserializableDependencyException(String message)
+   {
+      super(message);
+   }
+
+   public UnserializableDependencyException(Throwable throwable)
+   {
+      super(throwable);
+   }
+
+   
+
+}


Property changes on: ri/trunk/webbeans-api/src/main/java/javax/webbeans/UnserializableDependencyException.java
___________________________________________________________________
Name: svn:mime-type
   + text/plain




More information about the weld-commits mailing list