| BackgroundJobClientException Constructor |
Initializes a new instance of the
BackgroundJobClientException
class with a specified error message and a reference to the inner exception
that is the cause of this exception.
Namespace: HangfireAssembly: Hangfire.Core (in Hangfire.Core.dll) Version: 1.5.0.0
Syntax public BackgroundJobClientException(
string message,
Exception inner
)
Public Sub New (
message As String,
inner As Exception
)
Parameters
- message
- Type: SystemString
The error message that explains the reason for the exception. - inner
- Type: SystemException
The exception that is the cause of this exception, not null.
See Also