LogicException Constructor (LogicError, String, Exception) |
Creates an instance of a logic exception.
A logic exception is a way to interrupt the program flow that has failed due to one or more
LogicError
Namespace: Entelect.ErrorHandlingAssembly: Entelect (in Entelect.dll) Version: 0.0.79
Syntaxpublic LogicException(
LogicError error,
string additionalMessage = null,
Exception innerException = null
)
Parameters
- error
- Type: Entelect.ErrorHandling.LogicError
The error that caused the exception - additionalMessage (Optional)
- Type: System.String
Any additional information to display about the exception - innerException (Optional)
- Type: System.Exception
The exception that is the cause of the current exception, or a null reference if no inner exception is specified.
See Also