added some documentation

This commit is contained in:
hneemann 2016-04-17 15:12:04 +02:00
parent 8858754df5
commit 9c3324752d

View File

@ -1,8 +1,16 @@
package de.neemann.digital.gui;
/**
* Interface used to stop the model.
*
* @author hneemann
*/
public interface ErrorStopper {
/**
* Called to stop the mode
*
* @param message the message
* @param cause the cause
*/
void showErrorAndStopModel(String message, Exception cause);
}