* @param nfe the exception being handled
*/
@AfterThrowing(pointcut = "execution (* com.iggroup.wt.referencerest.service.*.*(..))", throwing = "nfe")
public void handleNotFoundException(ReferenceNotFoundException nfe) {
throw new SampleException(
new ReferenceNotFoundError(nfe.getReference()), HttpStatus.NOT_FOUND);
}