With Play framework 1.2.x one could annotate a method with the @Catch annotation to have it serve as an exception handler in the controller. However, in 2.x this seems to be gone, is there an equivalent annotation one can use here?
With Play framework 1.2.x one could annotate a method with the @Catch annotation to
Share
@Before,@After,@Catch,@Finallyin Play framework 1.x have been replaced into another concept@withon 2.x. See action compositon section on the documentation page.