Files
lombok/test/transform/resource/after-ecj/NonNullWithSneakyThrows.java
T
Reinier Zwitserloot d78135180c [deps] Updated eclipse deps to 3.9 tree. This also enables testing java7 features on ecj.
[Log] updated naming for @Log (topic= instead of mchmulder's 'value').
2014-02-10 21:56:35 +01:00

19 lines
423 B
Java

class NonNullWithSneakyThrows {
NonNullWithSneakyThrows() {
super();
}
@lombok.SneakyThrows void test(@lombok.NonNull String in) {
try
{
if ((in == null))
{
throw new java.lang.NullPointerException("in");
}
System.out.println(in);
}
catch (final java.lang.Throwable $ex)
{
throw lombok.Lombok.sneakyThrow($ex);
}
}
}