All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.minestom.server.exception.ExceptionHandler Maven / Gradle / Ivy

There is a newer version: 7320437640
Show newest version
package net.minestom.server.exception;

/**
 * Used when you want to implement your own exception handling, instead of just printing the stack trace.
 * 

* Sets with {@link ExceptionManager#setExceptionHandler(ExceptionHandler)}. */ @FunctionalInterface public interface ExceptionHandler { /** * Called when a exception was caught. * * @param e the thrown exception */ void handleException(Throwable e); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy