Skip to content
Snippets Groups Projects
Commit b4caff33 authored by Nelson Tavares de Sousa's avatar Nelson Tavares de Sousa
Browse files

added listener

parent de00950c
Branches
Tags v0.6.0
No related merge requests found
package teetime.framework;
public abstract class StageExceptionListener {
private final Thread thread;
public StageExceptionListener(final Thread thread) {
this.thread = thread;
}
public abstract void onStageException(Stage throwingStage);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment