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

net.diversionmc.async.PromiseException Maven / Gradle / Ivy

The newest version!
package net.diversionmc.async;

/**
 * Exception that may be thrown by {@link Promise}s.
 */
public class PromiseException extends RuntimeException {
    public PromiseException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy