Known Direct Subclasses |
Exception that is thrown for unrecoverable startup errors, such as fatal configuration errors or running on the wrong platform.
This exception type bypasses the retry with back-off recovery logic of Application
and
immediately terminates the connector execution.
Public Constructor Summary
StartupException()
Constructs a startup exception with no message and no cause.
|
|
StartupException(String message)
Constructs a startup exception with a supplied message but no cause.
|
|
StartupException(String message, Throwable cause)
Constructs a startup exception with message and cause.
|
|
StartupException(Throwable cause)
Constructs a startup exception with specified cause, copying its message if cause
is non-
null . |
Inherited Method Summary
Public Constructors
public StartupException ()
Constructs a startup exception with no message and no cause.
public StartupException (String message)
Constructs a startup exception with a supplied message but no cause.
Parameters
message | the message, retrievable using the getMessage() method
|
---|
public StartupException (String message, Throwable cause)
Constructs a startup exception with message and cause.
Parameters
message | the message, retrievable using the getMessage() method |
---|---|
cause | failure cause |
public StartupException (Throwable cause)
Constructs a startup exception with specified cause, copying its message if cause
is non-null
.
Parameters
cause | failure cause |
---|