Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NamingRuntimeException (0.25 sec)

  1. src/main/java/org/codelibs/core/exception/NamingRuntimeException.java

     *
     * @author higa
     */
    public class NamingRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = -3176447530746274091L;
    
        /**
         * Creates a {@link NamingRuntimeException}.
         *
         * @param cause
         *            The cause of the exception
         */
        public NamingRuntimeException(final NamingException cause) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/naming/InitialContextUtil.java

         * @return The object bound to <code>jndiName</code>.
         * @throws NamingRuntimeException
         *             Thrown if the initial context cannot be created.
         */
        public static Object lookup(final InitialContext ctx, final String jndiName) throws NamingRuntimeException {
            assertArgumentNotNull("ctx", ctx);
            assertArgumentNotEmpty("jndiName", jndiName);
    
            try {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 2.8K bytes
    - Viewed (0)
Back to top