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