Class DecoderNotFoundException
Represents an exception that is thrown when an FFmpeg decoder cannot be found.
Implements
Inherited Members
Namespace: FFmpeg.Exceptions
Assembly: FFmpeg.dll
Syntax
public class DecoderNotFoundException : FFmpegException, ISerializable
Remarks
This exception corresponds to the DecoderNotFound FFmpeg error code. It is typically thrown when attempting to open a codec for decoding that is not available in the current FFmpeg build or has not been registered.
Constructors
View SourceDecoderNotFoundException()
Initializes a new instance of the DecoderNotFoundException class.
Declaration
public DecoderNotFoundException()
DecoderNotFoundException(string)
Initializes a new instance of the DecoderNotFoundException class with a specified error message.
Declaration
public DecoderNotFoundException(string message)
Parameters
| Type | Name | Description |
|---|---|---|
| string | message | The message that describes the error. |
DecoderNotFoundException(string, Exception)
Initializes a new instance of the DecoderNotFoundException class with a specified error message and inner exception.
Declaration
public DecoderNotFoundException(string message, Exception innerException)
Parameters
| Type | Name | Description |
|---|---|---|
| string | message | The message that describes the error. |
| Exception | innerException | The exception that caused this exception. |