aboutsummaryrefslogtreecommitdiff
path: root/website/usageExamples/SneakyThrowsExample_post.jpage
diff options
context:
space:
mode:
Diffstat (limited to 'website/usageExamples/SneakyThrowsExample_post.jpage')
-rw-r--r--website/usageExamples/SneakyThrowsExample_post.jpage19
1 files changed, 19 insertions, 0 deletions
diff --git a/website/usageExamples/SneakyThrowsExample_post.jpage b/website/usageExamples/SneakyThrowsExample_post.jpage
new file mode 100644
index 00000000..916d94f0
--- /dev/null
+++ b/website/usageExamples/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);
+ }
+ }
+}