Skip to Content.
Sympa Menu

notify-dpml - r1056 - trunk/main/metro/runtime/src/main/net/dpml/metro/runtime

notify-dpml AT lists.ibiblio.org

Subject: DPML Notify

List archive

Chronological Thread  
  • From: mcconnell at BerliOS <mcconnell AT mail.berlios.de>
  • To: notify-dpml AT lists.ibiblio.org
  • Subject: r1056 - trunk/main/metro/runtime/src/main/net/dpml/metro/runtime
  • Date: Wed, 8 Feb 2006 15:15:04 +0100

Author: mcconnell
Date: 2006-02-08 15:14:52 +0100 (Wed, 08 Feb 2006)
New Revision: 1056

Modified:

trunk/main/metro/runtime/src/main/net/dpml/metro/runtime/CompositionController.java
Log:
fix bug in connection handler related to processing of plugin sourced errors

Modified:
trunk/main/metro/runtime/src/main/net/dpml/metro/runtime/CompositionController.java
===================================================================
---
trunk/main/metro/runtime/src/main/net/dpml/metro/runtime/CompositionController.java
2006-02-08 14:04:57 UTC (rev 1055)
+++
trunk/main/metro/runtime/src/main/net/dpml/metro/runtime/CompositionController.java
2006-02-08 14:14:52 UTC (rev 1056)
@@ -25,6 +25,7 @@
import java.util.EventObject;
import java.util.LinkedList;
import java.util.List;
+import java.lang.reflect.InvocationTargetException;

import net.dpml.logging.Logger;

@@ -345,6 +346,13 @@
{
throw new ControllerNotFoundException( CONTROLLER_URI, uri, e );
}
+ catch( InvocationTargetException e )
+ {
+ final String error =
+ "Controller instantiation failure."
+ + "URI: " + uri;
+ throw new ControllerRuntimeException( error );
+ }
}

void dispose()




  • r1056 - trunk/main/metro/runtime/src/main/net/dpml/metro/runtime, mcconnell at BerliOS, 02/08/2006

Archive powered by MHonArc 2.6.24.

Top of Page