Show / Hide Table of Contents

Class TryAgainException

Represents an exception that is thrown when an FFmpeg operation cannot be completed immediately and should be tried again.

Inheritance
object
Exception
FFmpegException
TryAgainException
Implements
ISerializable
Inherited Members
FFmpegException.ThrowIfError(int)
FFmpegException.ErrorCode
Exception.GetBaseException()
Exception.ToString()
Exception.GetType()
Exception.TargetSite
Exception.Message
Exception.Data
Exception.InnerException
Exception.HelpLink
Exception.Source
Exception.HResult
Exception.StackTrace
Exception.SerializeObjectState
object.MemberwiseClone()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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 Source

TryAgainException()

Initializes a new instance of the TryAgainException class.

Declaration
public TryAgainException()
View Source

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.

View Source

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.

Implements

ISerializable
  • View Source
In this article
Back to top Generated by DocFX