001/*
002 * Copyright 2002-2012 the original author or authors.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *      https://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016
017package org.springframework.jndi;
018
019import javax.naming.NamingException;
020
021import org.springframework.core.NestedRuntimeException;
022
023/**
024 * RuntimeException to be thrown in case of JNDI lookup failures,
025 * in particular from code that does not declare JNDI's checked
026 * {@link javax.naming.NamingException}: for example, from Spring's
027 * {@link JndiObjectTargetSource}.
028 *
029 * @author Juergen Hoeller
030 * @since 2.0.3
031 */
032@SuppressWarnings("serial")
033public class JndiLookupFailureException extends NestedRuntimeException {
034
035        /**
036         * Construct a new JndiLookupFailureException,
037         * wrapping the given JNDI NamingException.
038         * @param msg the detail message
039         * @param cause the NamingException root cause
040         */
041        public JndiLookupFailureException(String msg, NamingException cause) {
042                super(msg, cause);
043        }
044
045}