Class TryAgainException
Represents an exception that is thrown when an FFmpeg operation cannot be completed immediately and should be tried again.
Implements
Inherited Members
Namespace: FFmpeg.Exceptions
Assembly: FFmpeg.dll
Syntax
public class TryAgainException : FFmpegException, ISerializable
Remarks
This exception corresponds to the TryAgain FFmpeg error code,
which is typically associated with the EAGAIN error condition.
It indicates that the operation is temporarily unable to proceed and may succeed
when attempted again later.
Constructors
View SourceTryAgainException()
Initializes a new instance of the TryAgainException class.
Declaration
public TryAgainException()
TryAgainException(string)
Initializes a new instance of the TryAgainException class with a specified error message.
Declaration
public TryAgainException(string message)
Parameters
| Type | Name | Description |
|---|---|---|
| string | message | The message that describes the error. |
TryAgainException(string, Exception)
Initializes a new instance of the TryAgainException class with a specified error message and inner exception.
Declaration
public TryAgainException(string message, Exception innerException)
Parameters
| Type | Name | Description |
|---|---|---|
| string | message | The message that describes the error. |
| Exception | innerException | The exception that caused this exception. |