Class ModuleNotFoundException
Implements
Namespace: Sartorius.SAF.Presentation.Modularity
Assembly: Sartorius.SAF.Presentation.dll
Syntax
[Serializable]
public class ModuleNotFoundException : ModularityException, ISerializable
  Constructors
View SourceModuleNotFoundException()
Initializes a new instance of the ModuleNotFoundException class.
Declaration
public ModuleNotFoundException()
  ModuleNotFoundException(SerializationInfo, StreamingContext)
Initializes a new instance of the ModuleNotFoundException class with the serialization data.
Declaration
[Obsolete]
protected ModuleNotFoundException(SerializationInfo info, StreamingContext context)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Runtime.Serialization.SerializationInfo | info | Holds the serialized object data about the exception being thrown.  | 
      
| System.Runtime.Serialization.StreamingContext | context | Contains contextual information about the source or destination.  | 
      
ModuleNotFoundException(String)
Initializes a new instance of the ModuleNotFoundException class with a specified error message.
Declaration
public ModuleNotFoundException(string message)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | message | The message that describes the error.  | 
      
ModuleNotFoundException(String, Exception)
Initializes a new instance of the ModuleNotFoundException class with a specified error message.
Declaration
public ModuleNotFoundException(string message, Exception innerException)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | message | The message that describes the error.  | 
      
| System.Exception | innerException | The inner exception  | 
      
ModuleNotFoundException(String, String)
Initializes a new instance of the ModuleNotFoundException class with a specified error message and a reference to the inner exception that is the cause of this exception.
Declaration
public ModuleNotFoundException(string moduleName, string message)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | moduleName | The name of the module.  | 
      
| System.String | message | The error message that explains the reason for the exception.  | 
      
ModuleNotFoundException(String, String, Exception)
Initializes a new instance of the ModuleNotFoundException class with a specified error message and a reference to the inner exception that is the cause of this exception.
Declaration
public ModuleNotFoundException(string moduleName, string message, Exception innerException)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | moduleName | The name of the module.  | 
      
| System.String | message | The error message that explains the reason for the exception.  | 
      
| System.Exception | innerException | The exception that is the cause of the current exception, or a null reference if no inner exception is specified.  |