Possible duplicate:Does the exception use only a raise?
Is there any value for re-throwing an exception without another code between them?
try: #code except Exception: raise
Recently, I looked at some code and saw several blocks like these, nothing more in the block except the block, and another raise. I assume it was a mistake and poor decision making, am I right?
() VB.NET. , , , , " ", , - , .
.
- , , .
, "try.. except.." .
. try except, , .
try
except
class FruitException(Exception): pass try: raise FruitException except FruitException: print "we got a bad fruit" raise except Exception: print "not fruit related, irrelevant."
, . () , , , VB.NET Using. :
Using
Dim myResource As DisposableService Try myResource = New DisposableService() ' This might throw an exception.... myResource.DoSomething() Catch Throw Finally ' Perform cleanup on resource If Not myResource Is Nothing Then myResource.Dispose() End If End Try
, .
, , :
, func: , , - , , func, func, , func , GUI, ,
try, , , , ,
try: result = func(self, *args, **kws) return result except Exception, ex: # If an exception is raised save it also. logging_data['message'] = str(ex) logging_data['type'] = 'exception' # Raise the error catched here so that we could have # the same behavior as the decorated method. raise finally: # Save logging data in the database ....
, re-raise
, try-catch (?). Allman , .
Uh, Imagine
def something(a,b): try: // do stuff except SomethingSpecificToThisFunction: //handle except: //Everything else, should likely be handled somewhere else raise try: something("a","b") except e: Log(e)
, - ,
. , - .
Source: https://habr.com/ru/post/1769632/More articles:Java equivalent of .Net Solution file type - eclipsesearch for anchors with rel attribute and external value - jquerywhat is the store concept in openid - pythonAndroid canvas setMatrix (null) crashes (if getMatrix precedes it) - androidGiving table rows solid continuous background color - cssIs it bad to use Reflection in production code? - reflectionLinq to SQL and Intersect - linq-to-sqlMultiple application instances with Codeigniter - codeigniterHow to create sound from a double array and play it on the speaker - c ++Как загрузить файл из Интернета в приложении WinForm - c#All Articles