Class EpubContentDownloaderException
Represents an exception thrown by the EpubReader due to a remote content downloading error.
Inherited Members
Namespace: VersOne.Epub
Assembly: VersOne.Epub.dll
Syntax
public class EpubContentDownloaderException : EpubReaderException
Constructors
View SourceEpubContentDownloaderException(string)
Initializes a new instance of the EpubContentDownloaderException class with a specified URI of the remote content file.
Declaration
public EpubContentDownloaderException(string remoteContentFileUrl)
Parameters
Type | Name | Description |
---|---|---|
string | remoteContentFileUrl | The absolute URI of the remote content file that caused the error. |
EpubContentDownloaderException(string, Exception?, string)
Initializes a new instance of the EpubContentDownloaderException class with a specified error message, a reference to the inner exception that is the cause of this exception, and a specified URI of the remote content file.
Declaration
public EpubContentDownloaderException(string message, Exception? innerException, string remoteContentFileUrl)
Parameters
Type | Name | Description |
---|---|---|
string | message | The error message that explains the reason for the exception. |
Exception | innerException | The exception that is the cause of the current exception, or a |
string | remoteContentFileUrl | The absolute URI of the remote content file that caused the error. |
EpubContentDownloaderException(string, string)
Initializes a new instance of the EpubContentDownloaderException class with a specified error and a specified URI of the remote content file.
Declaration
public EpubContentDownloaderException(string message, string remoteContentFileUrl)
Parameters
Type | Name | Description |
---|---|---|
string | message | The message that describes the error. |
string | remoteContentFileUrl | The absolute URI of the remote content file that caused the error. |
Properties
View SourceRemoteContentFileUrl
Gets absolute URI of the remote content file that caused the error.
Declaration
public string RemoteContentFileUrl { get; }