Class ImplementationNotFoundException
- Namespace
- ZeroInstall.Store.Implementations
- Assembly
- ZeroInstall.Store.dll
Indicates an Implementation could not be found in a IImplementationStore.
public sealed class ImplementationNotFoundException : IOException, ISerializable
- Inheritance
-
ImplementationNotFoundException
- Implements
- Inherited Members
Constructors
ImplementationNotFoundException()
Creates a new implementation not found exception without specifying the specific implementation ID.
public ImplementationNotFoundException()
ImplementationNotFoundException(string)
Initializes a new instance of the IOException class with its message string set to message
, its HRESULT set to COR_E_IO, and its inner exception set to null.
public ImplementationNotFoundException(string message)
Parameters
message
stringA string that describes the error. The content of
message
is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.
ImplementationNotFoundException(string, Exception)
Initializes a new instance of the IOException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public ImplementationNotFoundException(string message, Exception innerException)
Parameters
message
stringThe error message that explains the reason for the exception.
innerException
ExceptionThe exception that is the cause of the current exception. If the
innerException
parameter is not null, the current exception is raised in a catch block that handles the inner exception.
ImplementationNotFoundException(ManifestDigest)
Creates a new implementation not found exception.
public ImplementationNotFoundException(ManifestDigest manifestDigest)
Parameters
manifestDigest
ManifestDigestThe ManifestDigest of the Implementation to be found.
Properties
ManifestDigest
The ManifestDigest of the Implementation to be found.
public ManifestDigest ManifestDigest { get; }