Skip to content

Commit

Permalink
#61 - improve error handling
Browse files Browse the repository at this point in the history
#86 - ErrorPopUp-Feature
#87 - Remove errorRoute implementation
  • Loading branch information
Frank Hossfeld committed Sep 16, 2019
1 parent b3bf691 commit 8b9f66b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions etc/wiki/12 Error Handling.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,27 @@ public class ErrorHandler

}
```
The context looks like that:
```java
public class ApplicationContext
implements IsContext {

private ErrorInfo errorInfo;

public ApplicationContext() {
}

public ErrorInfo getErrorInfo() {
return errorInfo;
}

public void setErrorInfo(ErrorInfo errorInfo) {
this.errorInfo = errorInfo;
}

}
```


See the 'xxx'-exammple:

0 comments on commit 8b9f66b

Please sign in to comment.