Skip to content

Commit

Permalink
BugID: 593
Browse files Browse the repository at this point in the history
  • Loading branch information
mspasiano committed Jul 11, 2011
1 parent 9ca6f76 commit efaec87
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sigla-ejb/.settings/org.maven.ide.eclipse.prefs
@@ -1,4 +1,4 @@
#Wed Jul 06 20:32:31 CEST 2011
#Mon Jul 11 18:32:52 CEST 2011
activeProfiles=
eclipse.preferences.version=1
fullBuildGoals=process-test-resources
Expand Down
Expand Up @@ -391,11 +391,15 @@ public void avvisoDiPagamentoMandatiRiscontrati()throws ComponentException{
}
@TransactionAttribute(TransactionAttributeType.REQUIRES_NEW)
public void avvisoDiPagamentoMandatoRiscontrato(it.cnr.jada.UserContext param0,it.cnr.contab.doccont00.core.bulk.MandatoBulk param1)throws ComponentException{
pre_component_invocation(param0,componentObj);
try {
((MandatoComponent)componentObj).avvisoDiPagamentoMandatoRiscontrato(param0, param1);
component_invocation_succes(param0,componentObj);
} catch(it.cnr.jada.comp.NoRollbackException e) {
component_invocation_succes(param0,componentObj);
throw e;
} catch(it.cnr.jada.comp.ComponentException e) {
component_invocation_failure(param0,componentObj);
throw e;
} catch(RuntimeException e) {
throw uncaughtRuntimeException(param0,componentObj,e);
Expand Down
2 changes: 1 addition & 1 deletion sigla-web/.settings/org.maven.ide.eclipse.prefs
@@ -1,4 +1,4 @@
#Wed Jul 06 20:30:18 CEST 2011
#Mon Jul 11 18:32:10 CEST 2011
activeProfiles=
eclipse.preferences.version=1
fullBuildGoals=process-test-resources
Expand Down

0 comments on commit efaec87

Please sign in to comment.