spring-batch BatchConfigurationException 源码

  • 2022-08-16
  • 浏览 (475)

spring-batch BatchConfigurationException 代码

文件路径:/spring-batch-core/src/main/java/org/springframework/batch/core/configuration/BatchConfigurationException.java

/*
 * Copyright 2014-2022 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.springframework.batch.core.configuration;

/**
 * Represents that an error has occurred in the configuration of the base batch
 * infrastructure (the creation of a
 * {@link org.springframework.batch.core.repository.JobRepository}, for example).
 *
 * @author Michael Minella
 * @author Mahmoud Ben Hassine
 * @since 2.2.6
 */
public class BatchConfigurationException extends RuntimeException {

	private static final long serialVersionUID = 1L;

	/**
	 * Create an exception with the given {@link Throwable}.
	 * @param t an exception to be wrapped
	 */
	public BatchConfigurationException(Throwable t) {
		super(t);
	}

}

相关信息

spring-batch 源码目录

相关文章

spring-batch DuplicateJobException 源码

spring-batch JobFactory 源码

spring-batch JobLocator 源码

spring-batch JobRegistry 源码

spring-batch ListableJobLocator 源码

spring-batch StepRegistry 源码

spring-batch package-info 源码

0  赞