Reduced debug output for external transtion issues.

Added processing status output for Deletes
This commit is contained in:
Rich
2015-08-12 22:15:45 +00:00
parent 312b0e4e2d
commit efe327a28f
3 changed files with 68 additions and 10 deletions

View File

@@ -190,13 +190,11 @@ namespace VEPROMS.CSLA.Library
}
catch (Exception ex)
{
Console.WriteLine("AnnotationExt: Stacktrace = {0}", ex.StackTrace);
System.Data.SqlClient.SqlException exSQL = SqlException(ex);
if (exSQL != null && exSQL.Message.Contains("###Cannot Delete Item###"))
//return false;
throw exSQL;
else
throw new DbCslaException("Error on Annotation.Delete", ex);
Console.WriteLine("AnnotationExt: Stacktrace = {0}", ex.StackTrace);
throw new DbCslaException("Error on Annotation.Delete", ex);
}
}
private static System.Data.SqlClient.SqlException SqlException(Exception ex)