C# Class Microsoft.Practices.Prism.Modularity.ModuleTypeLoadingException

Exception thrown by IModuleManager implementations whenever a module fails to retrieve.
Inheritance: Microsoft.Practices.Prism.Modularity.ModularityException
Mostrar archivo Open project: xperiandri/PortablePrism Class Usage Examples

Public Methods

Method Description
ModuleTypeLoadingException ( ) : Microsoft.Practices.Prism.Properties

Initializes a new instance.

ModuleTypeLoadingException ( string message ) : Microsoft.Practices.Prism.Properties

Initializes a new instance with a specified error message.

ModuleTypeLoadingException ( string message, Exception exception ) : Microsoft.Practices.Prism.Properties

Initializes a new instance with a specified error message and a reference to the inner exception that is the cause of this exception.

ModuleTypeLoadingException ( string moduleName, string message ) : Microsoft.Practices.Prism.Properties

Initializes the exception with a particular module and error message.

ModuleTypeLoadingException ( string moduleName, string message, Exception innerException ) : Microsoft.Practices.Prism.Properties

Initializes the exception with a particular module, error message and inner exception that happened.

Method Details

ModuleTypeLoadingException() public method

Initializes a new instance.
public ModuleTypeLoadingException ( ) : Microsoft.Practices.Prism.Properties
return Microsoft.Practices.Prism.Properties

ModuleTypeLoadingException() public method

Initializes a new instance with a specified error message.
public ModuleTypeLoadingException ( string message ) : Microsoft.Practices.Prism.Properties
message string The message that describes the error.
return Microsoft.Practices.Prism.Properties

ModuleTypeLoadingException() public method

Initializes a new instance with a specified error message and a reference to the inner exception that is the cause of this exception.
public ModuleTypeLoadingException ( string message, Exception exception ) : Microsoft.Practices.Prism.Properties
message string The error message that explains the reason for the exception.
exception System.Exception The exception that is the cause of the current exception, /// or a reference if no inner exception is specified.
return Microsoft.Practices.Prism.Properties

ModuleTypeLoadingException() public method

Initializes the exception with a particular module and error message.
public ModuleTypeLoadingException ( string moduleName, string message ) : Microsoft.Practices.Prism.Properties
moduleName string The name of the module.
message string The error message that explains the reason for the exception.
return Microsoft.Practices.Prism.Properties

ModuleTypeLoadingException() public method

Initializes the exception with a particular module, error message and inner exception that happened.
public ModuleTypeLoadingException ( string moduleName, string message, Exception innerException ) : Microsoft.Practices.Prism.Properties
moduleName string The name of the module.
message string The error message that explains the reason for the exception.
innerException System.Exception The exception that is the cause of the current exception, /// or a reference if no inner exception is specified.
return Microsoft.Practices.Prism.Properties