001/*
002 * Copyright 2006-2007 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.batch.item.adapter;
018
019import org.springframework.util.MethodInvoker;
020
021/**
022 * Indicates an error has been encountered while trying to dynamically invoke a
023 * method e.g. using {@link MethodInvoker}.
024 * 
025 * The exception should be caused by a failed invocation of a method, it
026 * shouldn't be used to wrap an exception thrown by successfully invoked method.
027 * 
028 * @author Robert Kasanicky
029 */
030public class DynamicMethodInvocationException extends RuntimeException {
031
032        // generated value
033        private static final long serialVersionUID = -6056786139731564040L;
034
035        public DynamicMethodInvocationException(Throwable cause) {
036                super(cause);
037        }
038
039        public DynamicMethodInvocationException(String message, Throwable cause) {
040                super(message, cause);
041        }
042}