19 namespace Deveel.Data.Diagnostics {
26 : this(errorCode, null) {
30 : this(errorCode, message, null) {
38 : this(message, null) {
45 public ErrorException(
int errorCode,
string message, Exception innerException)
46 : base(message, innerException) {
47 ErrorCode = errorCode;
54 public int ErrorCode {
get;
private set; }
76 e.EventSource = source;
ErrorEvent AsEvent(IEventSource source)
Transforms the error to an event to be passed to the diagnostics, given a source where this was gener...
ErrorException(string message)
ErrorException(int errorCode, string message, Exception innerException)
ErrorLevel
In case of error messages, this enumerates the level of severity of the error.
ErrorException(int errorCode, string message)
ErrorException(string message, Exception innerException)
ErrorException(int errorCode)
Represents the origin of system events, providing a mechanism to fill the metadata before dispatching...
The base class of all the exceptions handled by the system and that can be converted to events sent t...