Class BatchConfigurationException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.batch.core.configuration.BatchConfigurationException
All Implemented Interfaces:
Serializable

public class BatchConfigurationException extends RuntimeException
Represents that an error has occurred in the configuration of the base batch infrastructure (the creation of a JobRepository, for example).
Since:
2.2.6
Author:
Michael Minella, Mahmoud Ben Hassine
See Also:
  • Constructor Details

    • BatchConfigurationException

      public BatchConfigurationException(Throwable t)
      Create an exception with the given Throwable.
      Parameters:
      t - an exception to be wrapped
    • BatchConfigurationException

      public BatchConfigurationException(String message)
      Create an exception with the given message.
      Parameters:
      message - the error message
    • BatchConfigurationException

      public BatchConfigurationException(String message, Throwable cause)
      Create an exception with the given message and Throwable.
      Parameters:
      message - the error message
      cause - an exception to be wrapped