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

Exception thrown by IModuleInitializer implementations whenever a module fails to load.
Inheritance: Microsoft.Practices.Prism.Modularity.ModularityException
Show file Open project: xperiandri/PortablePrism Class Usage Examples

Public Methods

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

Initializes a new instance.

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

Initializes a new instance of the ModuleInitializeException class.

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

Initializes a new instance of the ModuleInitializeException class.

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

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

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

Initializes the exception with a particular module and error message.

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

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

Method Details

ModuleInitializeException() public method

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

ModuleInitializeException() public method

Initializes a new instance of the ModuleInitializeException class.
public ModuleInitializeException ( string message ) : Microsoft.Practices.Prism.Properties
message string The exception message.
return Microsoft.Practices.Prism.Properties

ModuleInitializeException() public method

Initializes a new instance of the ModuleInitializeException class.
public ModuleInitializeException ( string message, Exception innerException ) : Microsoft.Practices.Prism.Properties
message string The exception message.
innerException System.Exception The inner exception.
return Microsoft.Practices.Prism.Properties

ModuleInitializeException() public method

Initializes the exception with a particular module, error message and inner exception that happened.
public ModuleInitializeException ( 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

ModuleInitializeException() public method

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

ModuleInitializeException() public method

Initializes the exception with a particular module, error message and inner exception that happened.
public ModuleInitializeException ( string moduleName, string moduleAssembly, string message, Exception innerException ) : Microsoft.Practices.Prism.Properties
moduleName string The name of the module.
moduleAssembly string The assembly where the module is located.
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