Click or drag to resize
LogicError Constructor
Creates an instance of the logic error class. Logic errors are represents errors that can safely be displayed to the user. This is so that they know why something has gone wrong, instead of seeing a general error page and can possibly correct themselves. You can also use logic errors to validate multiple aspects of a class, collect all the validation errors and return them at once instead of throwing a single exception for each

Namespace: Entelect.ErrorHandling
Assembly: Entelect (in Entelect.dll) Version: 0.0.79
Syntax
C#
protected LogicError(
	string message = null
)

Parameters

message (Optional)
Type: SystemString
The message to display to the end user of the system
See Also