InvalidConfigurationException

Stay organized with collections Save and categorize content based on your preferences.
public class InvalidConfigurationException extends StartupException

Exception that is thrown for fatal configuration errors.

This exception type bypasses the retry with back-off recovery logic of Application and immediately terminates the connector execution.

Public Constructor Summary

InvalidConfigurationException()
Constructs a configuration exception with no message and no cause.
InvalidConfigurationException(String message)
Constructs a configuration exception with a supplied message but no cause.
InvalidConfigurationException(String message, Throwable cause)
Constructs a configuration exception with message and cause.
InvalidConfigurationException(Throwable cause)
Constructs a configuration exception with specified cause, copying its message if cause is non-null.

Inherited Method Summary

Public Constructors

public InvalidConfigurationException ()

Constructs a configuration exception with no message and no cause.

public InvalidConfigurationException (String message)

Constructs a configuration exception with a supplied message but no cause.

Parameters
message the message, retrievable using the getMessage() method

public InvalidConfigurationException (String message, Throwable cause)

Constructs a configuration exception with message and cause.

Parameters
message the message, retrievable using the getMessage() method
cause failure cause

public InvalidConfigurationException (Throwable cause)

Constructs a configuration exception with specified cause, copying its message if cause is non-null.

Parameters
cause failure cause