Force the execution of a function before exception handling (JAVA)

75 Views Asked by At

I am currently working on a big project (multiples sources files). I would like to fix an abnormal behavior by adding a function execution before the program's stop with exception (I mean I have to add this fonctionnality into a lots of existing functions). Is-it a simple solution (avoiding adding a line for each function) to force the execution ?

thanks a lot

2

There are 2 best solutions below

0
On

before the program's stop with exception

You can use addShutdownHook method.

0
On

Tis is the perfect use case for aspect oriented programming https://en.wikipedia.org/wiki/Aspect-oriented_programming