v1.1
v1.1 contains:
- implementation of checked exceptions (wrapped inside ElvisException)
- more tests to cover more scenarios
Supported syntax for checked exceptions:
import static com.github.lukaszbudnik.jelvis.Elvis.elvis;
import static com.github.lukaszbudnik.jelvis.Elvis.wrappedFunction;
//...
Person person = new Person();
String line2 = elvis(person, wrappedFunction(p -> p.getAddress().getLine2()));