/* * Copyright (c) 2002, 2007, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javax.management.remote; import java.io.IOException; /** *
Exception thrown by {@link JMXConnectorFactory} and * {@link JMXConnectorServerFactory} when a provider exists for * the required protocol but cannot be used for some reason.
* * @see JMXConnectorFactory#newJMXConnector * @see JMXConnectorServerFactory#newJMXConnectorServer * @since 1.5 */ public class JMXProviderException extends IOException { private static final long serialVersionUID = -3166703627550447198L; /** *Constructs a JMXProviderException
with no
* specified detail message.
Constructs a JMXProviderException
with the
* specified detail message.
Constructs a JMXProviderException
with the
* specified detail message and nested exception.