how to get exception status code c# code example
Example: how to get error code from exception in c#
try {
// some operation causing an exception
}
catch (SqlException e) {
if (e.ErrorCode == 0x80131904)
// ...
return null;
throw;
}
try {
// some operation causing an exception
}
catch (SqlException e) {
if (e.ErrorCode == 0x80131904)
// ...
return null;
throw;
}