From 46831b10b940c92dc06125e378c009d44688ef0a Mon Sep 17 00:00:00 2001 From: nathan Date: Wed, 4 Apr 2018 23:33:35 +0200 Subject: [PATCH] Changed RMI exception handling. If you don't EXPLICITLY transmit exceptions AND the method does not throw an exception, then exceptions will not be returned. --- test/dorkbox/network/rmi/TestCowBase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/dorkbox/network/rmi/TestCowBase.java b/test/dorkbox/network/rmi/TestCowBase.java index b725713f..cf300ef7 100644 --- a/test/dorkbox/network/rmi/TestCowBase.java +++ b/test/dorkbox/network/rmi/TestCowBase.java @@ -5,5 +5,5 @@ package dorkbox.network.rmi; */ public interface TestCowBase { - void throwException(); + void throwException() throws UnsupportedOperationException; }