aboutsummaryrefslogtreecommitdiff
path: root/usage_examples/SneakyThrowsExample_post.jpage
diff options
context:
space:
mode:
Diffstat (limited to 'usage_examples/SneakyThrowsExample_post.jpage')
-rw-r--r--usage_examples/SneakyThrowsExample_post.jpage19
1 files changed, 19 insertions, 0 deletions
diff --git a/usage_examples/SneakyThrowsExample_post.jpage b/usage_examples/SneakyThrowsExample_post.jpage
new file mode 100644
index 00000000..916d94f0
--- /dev/null
+++ b/usage_examples/SneakyThrowsExample_post.jpage
@@ -0,0 +1,19 @@
+import lombok.Lombok;
+
+public class SneakyThrowsExample implements Runnable {
+ public String utf8ToString(byte[] bytes) {
+ try {
+ return new String(bytes, "UTF-8");
+ } catch (UnsupportedEncodingException e) {
+ throw Lombok.sneakyThrow(e);
+ }
+ }
+
+ public void run() {
+ try {
+ throw new Throwable();
+ } catch (Throwable t) {
+ throw Lombok.sneakyThrow(t);
+ }
+ }
+}