Class TamperException
Exception that is thrown by a supported method under one of the following circumstances:
- Return values being altered unexpectedly.
- Internal object state corruption.
- Function return value outside the expected/possible range.
- Memory corruption not captured by the CLR.
- External modification of internal values in a type.
- Unexpected access to private methods in a type.
- Dereference of null in places known to not have a possible reference to null.
- Escapes in parameter validation.
Implements
Inherited Members
Namespace: TheXDS.MCART.Exceptions
Assembly: MCART.dll
Syntax
[Serializable]
public class TamperException : Exception, ISerializable
Constructors
| Edit this page View SourceTamperException()
Initializes a new instance of the TamperException class.
Declaration
public TamperException()
TamperException(Exception)
Initializes a new instance of the TamperException class.
Declaration
public TamperException(Exception inner)
Parameters
Type | Name | Description |
---|---|---|
Exception | inner | Exception that is the cause of this exception. |
TamperException(string)
Initializes a new instance of the TamperException class.
Declaration
public TamperException(string message)
Parameters
Type | Name | Description |
---|---|---|
string | message | Message that describes the exception. |
TamperException(string, Exception)
Initializes a new instance of the TamperException class.
Declaration
public TamperException(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. |