From 921bab416f483b7a0a4c9fb569f370a2cafc441c Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Tue, 11 Feb 2025 20:11:39 +0100 Subject: [PATCH] Fix SystemStateFailureException javadoc We have a complaint during staging, correct the documentation. JIRA: INFRAUTILS-104 Change-Id: Ifb0977eacd51ba34a7a6530a795ed600438d1866 Signed-off-by: Robert Varga --- .../internal/SystemStateFailureException.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/ready/impl/src/main/java/org/opendaylight/infrautils/ready/karaf/internal/SystemStateFailureException.java b/ready/impl/src/main/java/org/opendaylight/infrautils/ready/karaf/internal/SystemStateFailureException.java index 29cf2eaed..44107d31b 100644 --- a/ready/impl/src/main/java/org/opendaylight/infrautils/ready/karaf/internal/SystemStateFailureException.java +++ b/ready/impl/src/main/java/org/opendaylight/infrautils/ready/karaf/internal/SystemStateFailureException.java @@ -11,14 +11,14 @@ import org.osgi.framework.BundleActivator; /** - * Exception thrown (only) by - * {@link TestBundleDiag#checkBundleDiagInfos(long, java.util.concurrent.TimeUnit)} - * if there are any OSGi bundles that failed to start. This is based on not only {@link Bundle#getState()}'s - * {@link Bundle#ACTIVE}, but also DI wiring systems such as blueprint containers. The Exceptions' message - * will likely contain a longer multi-line String with extensive technical details including all failed - * bundles' states, detailed technical information related to OSGi bundle and blueprint resolution, - * and possibly exceptions incl. stack traces thrown by {@link BundleActivator} start() methods and - * dependency injection object wiring {@literal @}PostConstruct "init" type methods. + * Exception used (only) by {@link KarafSystemReady} if there are any OSGi bundles that failed to start. This is based + * on not only {@link Bundle#getState()}'s {@link Bundle#ACTIVE}, but also DI wiring systems such as blueprint + * containers. + * + *

The {@link #getMessage() message} will likely contain a longer multi-line String with extensive technical details + * including all failed bundles' states, detailed technical information related to OSGi bundle and blueprint resolution, + * and possibly exceptions incl. stack traces thrown by {@link BundleActivator} start() methods and dependency injection + * object wiring {@code PostConstruct} "init" type methods. * * @author Michael Vorburger.ch */