< prev index next >

jdk/test/javax/management/MBeanServer/ExceptionTest.java

Print this page




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 8058865
  27  * @summary Checks that exceptions are correctly wired (compared to reference).
  28  * @author Olivier Lagneau
  29  * @modules java.management
  30  * @run main/othervm/timeout=300 -DDEBUG_STANDARD ExceptionTest
  31  */
  32 
  33 import java.util.Map;
  34 import java.util.HashMap;
  35 import java.util.Properties;
  36 import java.lang.reflect.Method;
  37 
  38 import java.lang.management.ManagementFactory;
  39 import javax.management.ObjectName;
  40 import javax.management.MBeanServer;
  41 import javax.management.MBeanServerConnection;
  42 import javax.management.remote.JMXConnector;
  43 import javax.management.remote.JMXConnectorFactory;
  44 import javax.management.remote.JMXConnectorServer;
  45 import javax.management.remote.JMXConnectorServerFactory;
  46 import javax.management.remote.JMXServiceURL;
  47 
  48 
  49 public class ExceptionTest {


 351                                 } catch (Exception ee) {
 352                                 // OK: getTargetError method could be there or not
 353                                 }
 354                             } else {
 355                                 target = null;
 356                             }
 357                         } catch (Exception ee) {
 358                             target = null;
 359                         }
 360                     }
 361                 } else {
 362                     System.out.println("Throwable is : " + theThro);
 363                 }
 364             } catch (Throwable x) {
 365                 System.out.println("Exception : raised in printException : " + x);
 366             }
 367         }
 368     }
 369 
 370 }
 371 
 372 


   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 8058865
  27  * @summary Checks that exceptions are correctly wired (compared to reference).
  28  * @author Olivier Lagneau
  29  * @modules java.management.rmi
  30  * @run main/othervm/timeout=300 -DDEBUG_STANDARD ExceptionTest
  31  */
  32 
  33 import java.util.Map;
  34 import java.util.HashMap;
  35 import java.util.Properties;
  36 import java.lang.reflect.Method;
  37 
  38 import java.lang.management.ManagementFactory;
  39 import javax.management.ObjectName;
  40 import javax.management.MBeanServer;
  41 import javax.management.MBeanServerConnection;
  42 import javax.management.remote.JMXConnector;
  43 import javax.management.remote.JMXConnectorFactory;
  44 import javax.management.remote.JMXConnectorServer;
  45 import javax.management.remote.JMXConnectorServerFactory;
  46 import javax.management.remote.JMXServiceURL;
  47 
  48 
  49 public class ExceptionTest {


 351                                 } catch (Exception ee) {
 352                                 // OK: getTargetError method could be there or not
 353                                 }
 354                             } else {
 355                                 target = null;
 356                             }
 357                         } catch (Exception ee) {
 358                             target = null;
 359                         }
 360                     }
 361                 } else {
 362                     System.out.println("Throwable is : " + theThro);
 363                 }
 364             } catch (Throwable x) {
 365                 System.out.println("Exception : raised in printException : " + x);
 366             }
 367         }
 368     }
 369 
 370 }


< prev index next >