Skip to content
This repository has been archived by the owner on Feb 20, 2020. It is now read-only.

Commit

Permalink
Merge branch 'master' of https://github.com/mkuerbis/GroovyFO
Browse files Browse the repository at this point in the history
  • Loading branch information
mrothenbuecher committed Apr 18, 2016
2 parents ee857be + db235ea commit 03ee06f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,26 @@ Zum testen Kommando aufrufen mit
| | mehr() | success() or more()|
|... | ... | ... |

### Ablaufsteuerung

In jedem GroovyFO gibt es die Möglichkeit die Methoden `onerror(Exception ex)` und `always()` zu überschreiben.

`onerror` wird immer dann ausgeführt, solange sich das GroovyFO übersetzen lässt und wenn eine unbehandelte Ausnahme im Code des GroovyFO auftritt.<br>
`always` wird, solange sich das GroovyFO übersetzen lässt, immer am Ende ausgeführt des Programmes ausgeführt. <br>

```groovy
def onerror(def ex){
// was ist zutun wenn ein Fehler beim ausführen des GroovyFO auftritt?
}
def always(){
// am ende des GroovyFO, was soll immer gemacht werden?
// diese Methode wird auch nach einem Fehler ausgeführt
}
```

### Helferlein

#### SelectionBuilder
Expand Down

0 comments on commit 03ee06f

Please sign in to comment.