Class MissingTypeException
Exception that is thrown when a required type is not found.
Implements
Inherited Members
Namespace: TheXDS.MCART.Exceptions
Assembly: MCART.dll
Syntax
[Serializable]
public class MissingTypeException : OffendingException<Type>, ISerializable
Constructors
| Edit this page View SourceMissingTypeException()
Initializes a new instance of the MissingTypeException class.
Declaration
public MissingTypeException()
MissingTypeException(Exception)
Initializes a new instance of the MissingTypeException class.
Declaration
public MissingTypeException(Exception inner)
Parameters
Type | Name | Description |
---|---|---|
Exception | inner | Exception that is the cause of this exception. |
MissingTypeException(Exception, Type)
Initializes a new instance of the MissingTypeException class.
Declaration
public MissingTypeException(Exception inner, Type missingType)
Parameters
Type | Name | Description |
---|---|---|
Exception | inner | Exception that is the cause of this exception. |
Type | missingType | Definition for the missing type that caused the exception. |
MissingTypeException(string)
Initializes a new instance of the MissingTypeException class.
Declaration
public MissingTypeException(string message)
Parameters
Type | Name | Description |
---|---|---|
string | message | Message that describes the exception. |
MissingTypeException(string, Exception)
Initializes a new instance of the MissingTypeException. class.
Declaration
public MissingTypeException(string message, Exception inner)
Parameters
Type | Name | Description |
---|---|---|
string | message | Message that describes the exception. |
Exception | inner | Exception that is the cause of this exception. |
MissingTypeException(string, Exception, Type)
Initializes a new instance of the MissingTypeException. class.
Declaration
public MissingTypeException(string message, Exception inner, Type missingType)
Parameters
Type | Name | Description |
---|---|---|
string | message | Message that describes the exception. |
Exception | inner | Exception that is the cause of this exception. |
Type | missingType | Definition for the missing type that caused the exception. |
MissingTypeException(string, Type)
Initializes a new instance of the MissingTypeException class.
Declaration
public MissingTypeException(string message, Type missingType)
Parameters
Type | Name | Description |
---|---|---|
string | message | Message that describes the exception. |
Type | missingType | Definition for the missing type that caused the exception. |
MissingTypeException(Type)
Initializes a new instance of the MissingTypeException class.
Declaration
public MissingTypeException(Type missingType)
Parameters
Type | Name | Description |
---|---|---|
Type | missingType | Definition for the missing type that caused the exception. |