added javadoc

This commit is contained in:
hneemann 2016-08-20 13:21:12 +02:00
parent 998bb9b3ac
commit 26ac2c5fb3

View File

@ -1,9 +1,15 @@
package de.neemann.digital.gui.remote;
/**
* Exception thrown by the RemoteInterface
* Created by hneemann on 20.08.16.
*/
public class RemoteException extends Exception {
/**
* Create a new Exception
*
* @param message the message
*/
public RemoteException(String message) {
super(message);
}