packagetest;publicclassSecondTestExecutableextendsAbstractExecutable{publicvoidexecute(){// should not happen because of ExecutionAspect prevents executionthrownewRuntimeException();}publicstaticvoidmain(String[]args){newSecondTestExecutable().execute();}}