GP-3857: Port most Debugger components to TraceRmi.

This commit is contained in:
Dan 2023-11-02 10:43:31 -04:00
parent 7e4d2bcfaa
commit fd4380c07a
222 changed files with 7241 additions and 3752 deletions

View file

@ -22,7 +22,7 @@ package utility.function;
* @param <E> the exception of your choice
*/
@FunctionalInterface
public interface ExceptionalCallback<E extends Exception> {
public interface ExceptionalCallback<E extends Throwable> {
/**
* The method that will be called

View file

@ -23,7 +23,7 @@ package utility.function;
* @param <E> the exception of your choice
*/
@FunctionalInterface
public interface ExceptionalConsumer<T, E extends Exception> {
public interface ExceptionalConsumer<T, E extends Throwable> {
/**
* The method that will be called

View file

@ -24,7 +24,7 @@ package utility.function;
* @param <E> the exception of your choice
*/
@FunctionalInterface
public interface ExceptionalFunction<I, R, E extends Exception> {
public interface ExceptionalFunction<I, R, E extends Throwable> {
/**
* The method that will be called

View file

@ -23,7 +23,7 @@ package utility.function;
* @param <E> the exception of your choice
*/
@FunctionalInterface
public interface ExceptionalSupplier<T, E extends Exception> {
public interface ExceptionalSupplier<T, E extends Throwable> {
/**
* The supplier method