我在 .net 网站中使用 vb.net 和 .net 2
是否可以在类后面的代码中添加一个(我认为它称为异常属性),这样如果类中发生任何异常但只发生在该类中,那么我可以退出该类中的任何函数并对异常执行某些操作
这是可能的还是你有其他想法?
我想要做的是,如果发生任何异常,则立即停止并返回异常。
谢谢你的建议。
<add exception attribute>
Partial Class _Default
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim result As String = "all fine"
doOne()
If Exception Then
result = Exception.Message
End If
Return result
End Sub
Private Sub doOne()
doTwo()
Throw New ApplicationException("Exception Occured")
End Sub
Private Sub doTwo()
Throw New ApplicationException("Exception Occured")
End Sub
Private Sub doThree()
doOne()
Throw New ApplicationException("Exception Occured")
End Sub
End Class