Trapping Save() Errors


Author
Message
choyt
choyt
StrataFrame Novice (92 reputation)StrataFrame Novice (92 reputation)StrataFrame Novice (92 reputation)StrataFrame Novice (92 reputation)StrataFrame Novice (92 reputation)StrataFrame Novice (92 reputation)StrataFrame Novice (92 reputation)StrataFrame Novice (92 reputation)StrataFrame Novice (92 reputation)
Group: Forum Members
Posts: 78, Visits: 246
I really appreciate all your help. This is what I finally came up with. I'm going to put this on all of our base business objects.

Public Overrides Function Save(ByVal IsTransactional As Boolean) As MicroFour.StrataFrame.Data.SaveUndoResult

Try

Dim r As MicroFour.StrataFrame.Data.SaveUndoResult = MyBase.Save(IsTransactional)

If r = MicroFour.StrataFrame.Data.SaveUndoResult.AbortedWithBrokenRules Then

Call Utility.SystemUtilities.ErrHandler.BrokenRulesHandler(Me.BrokenRules)

ElseIf r = MicroFour.StrataFrame.Data.SaveUndoResult.FailedWithExceptions Then

Call Utility.SystemUtilities.ErrHandler.SaveFailedHandler(Me.TableName)

Else

Return r

End If

Catch ex As Exception

Call Utility.SystemUtilities.ErrHandler.SaveFailedHandler(ex)

End Try

End Function

The 2 Handler functions basically write to the event log and then rethrow a custom exception to the presentation layer.

StrataFrame Team
S
StrataFrame Developer (4.2K reputation)StrataFrame Developer (4.2K reputation)StrataFrame Developer (4.2K reputation)StrataFrame Developer (4.2K reputation)StrataFrame Developer (4.2K reputation)StrataFrame Developer (4.2K reputation)StrataFrame Developer (4.2K reputation)StrataFrame Developer (4.2K reputation)StrataFrame Developer (4.2K reputation)
Group: StrataFrame Developers
Posts: 3K, Visits: 2.5K
Looks good, just make sure that when you throw the exception from within the handlers, that you include the supplied exception as an inner exception in case you need to get back to the stack trace some how.
GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Similar Topics

Reading This Topic

Login

Explore
Messages
Mentions
Search