aboutsummaryrefslogtreecommitdiff
path: root/website2/usageExamples/SneakyThrowsExample_pre.jpage
diff options
context:
space:
mode:
Diffstat (limited to 'website2/usageExamples/SneakyThrowsExample_pre.jpage')
-rw-r--r--website2/usageExamples/SneakyThrowsExample_pre.jpage13
1 files changed, 13 insertions, 0 deletions
diff --git a/website2/usageExamples/SneakyThrowsExample_pre.jpage b/website2/usageExamples/SneakyThrowsExample_pre.jpage
new file mode 100644
index 00000000..be6d72d5
--- /dev/null
+++ b/website2/usageExamples/SneakyThrowsExample_pre.jpage
@@ -0,0 +1,13 @@
+import lombok.SneakyThrows;
+
+public class SneakyThrowsExample implements Runnable {
+ @SneakyThrows(UnsupportedEncodingException.class)
+ public String utf8ToString(byte[] bytes) {
+ return new String(bytes, "UTF-8");
+ }
+
+ @SneakyThrows
+ public void run() {
+ throw new Throwable();
+ }
+}