Class PropertyMapException
Custom Exception that lets the user know a code change is required to fix this error
Inherited Members
Namespace: DotNetHelper.FastMember.Extension.Exceptions
Assembly: DotNetHelper.FastMember.Extension.dll
Syntax
[Serializable]
public class PropertyMapException : Exception, ISerializable, _Exception
Constructors
| Improve this Doc View SourcePropertyMapException()
Just create the exception
Declaration
public PropertyMapException()
PropertyMapException(SerializationInfo, StreamingContext)
Create the exception from serialized data. Usual scenario is when exception is occured somewhere on the remote workstation and we have to re-create/re-throw the exception on the local machine
Declaration
protected PropertyMapException(SerializationInfo info, StreamingContext context)
Parameters
Type | Name | Description |
---|---|---|
SerializationInfo | info | Serialization info |
StreamingContext | context | Serialization context |
PropertyMapException(String)
Create the exception with description
Declaration
public PropertyMapException(string message)
Parameters
Type | Name | Description |
---|---|---|
String | message | Exception description |
PropertyMapException(String, Exception)
Create the exception with description and inner cause
Declaration
public PropertyMapException(string message, Exception innerException)
Parameters
Type | Name | Description |
---|---|---|
String | message | Exception description |
Exception | innerException | Exception inner cause |