+ catchers

master
坏黑 2019-10-06 17:46:46 +08:00
parent 75285b6bb5
commit 938e547d96
1 changed files with 5 additions and 2 deletions

View File

@ -59,10 +59,13 @@ public class Catchers implements Listener {
public interface Catcher {
Catcher before();
default Catcher before() {
return this;
}
boolean after(String message);
void cancel();
default void cancel() {
}
}
}