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.
This commit is contained in:
nathan 2018-04-04 23:33:35 +02:00
parent d3fbefd437
commit 46831b10b9

View File

@ -5,5 +5,5 @@ package dorkbox.network.rmi;
*/
public
interface TestCowBase {
void throwException();
void throwException() throws UnsupportedOperationException;
}