src/share/classes/com/sun/jndi/cosnaming/ExceptionMapper.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1999, 2005, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 100,113 **** return ne; } private static final NamingException tryFed(NotFound e, CNCtx ctx, NameComponent[] inputName) throws NamingException { ! NameComponent[] rest = ((NotFound) e).rest_of_name; if (debug) { ! System.out.println(((NotFound)e).why.value()); System.out.println(rest.length); } // %%% Using 1.2 & 1.3 Sun's tnameserv, 'rest' contains only the first // component that failed, not *rest* as advertized. This is useless --- 100,113 ---- return ne; } private static final NamingException tryFed(NotFound e, CNCtx ctx, NameComponent[] inputName) throws NamingException { ! NameComponent[] rest = e.rest_of_name; if (debug) { ! System.out.println(e.why.value()); System.out.println(rest.length); } // %%% Using 1.2 & 1.3 Sun's tnameserv, 'rest' contains only the first // component that failed, not *rest* as advertized. This is useless