You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-4Lines changed: 18 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ This small library holds a set of Exceptions that implements idea of fast, reusa
6
6
7
7
## Caution
8
8
9
-
This classes shouldn't be used in any public API or library. It is designed to be used for in-house development of end user applications which will report Bugs in standarized error pages or post them to issue tracker.
9
+
This classes shouldn't be used in any public API or library. It is designed to be used for in-house development of end user applications which will report Bugs in standardized error pages or post them to issue tracker.
10
10
11
11
## Requirements
12
12
@@ -69,7 +69,7 @@ try {
69
69
70
70
#### Functional try to execute blocks
71
71
72
-
Using functional blocks to handle operations, that are intended to operate properly, simplify the code and makes it more readable. It's also good way to deal with untested, uncovered `catch` blocks. It's easy and gives developers nice way of dealing with countless operations that supose to work as intended.
72
+
Using functional blocks to handle operations, that are intended to operate properly, simplify the code and makes it more readable. It's also good way to deal with untested, uncovered `catch` blocks. It's easy and gives developers nice way of dealing with countless operations that suppose to work as intended.
73
73
74
74
Example:
75
75
@@ -82,7 +82,21 @@ InputStream is = EidPreconditions.tryToExecute(new RiskyCode<InputStream>() {
82
82
}
83
83
}, "20150718:121521");
84
84
```
85
-
85
+
86
+
###Contributing
87
+
88
+
Contributions are welcome!
89
+
90
+
To contribute, follow the standard [git flow](http://danielkummer.github.io/git-flow-cheatsheet/) of:
91
+
92
+
1. Fork it
93
+
1. Create your feature branch (`git checkout -b feature/my-new-feature`)
94
+
1. Commit your changes (`git commit -am 'Add some feature'`)
95
+
1. Push to the branch (`git push origin feature/my-new-feature`)
96
+
1. Create new Pull Request
97
+
98
+
Even if you can't contribute code, if you have an idea for an improvement please open an [issue](https://github.com/wavesoftware/java-eid-exceptions/issues).
99
+
86
100
### Releases
87
101
88
-
- 0.1.0 (idea imported from Guava Library and COI code)
102
+
- 0.1.0 (idea imported from Guava Library and COI code)
0 commit comments