Updated proxy errors

This commit is contained in:
Auxilor
2022-02-03 12:05:22 +00:00
parent d49405f839
commit 4e18a0ab78
4 changed files with 39 additions and 10 deletions

View File

@@ -635,7 +635,7 @@ public abstract class EcoPlugin extends JavaPlugin implements PluginLike {
* @return The proxy.
*/
public final <T> T getProxy(@NotNull final Class<T> proxyClass) {
Validate.notNull(proxyFactory, "Plugin does not support proxy!");
Validate.notNull(proxyFactory, "Plugin does not support proxies!");
return proxyFactory.getProxy(proxyClass);
}

View File

@@ -5,12 +5,26 @@ import org.jetbrains.annotations.NotNull;
/**
* Generic error with proxy loading.
*/
public class ProxyError extends RuntimeException {
public class ProxyError extends Error {
/**
* Thrown if there is an error getting a proxy.
*
* @param message The message to send.
* @param cause The cause.
*/
public ProxyError(@NotNull final String message,
@NotNull final Throwable cause) {
super(message, cause);
}
/**
* Thrown if there is an error getting a proxy.
*
* @param message The message to send.
* @deprecated Proxy Errors should include a cause.
*/
@Deprecated
@SuppressWarnings("DeprecatedIsStillUsed")
public ProxyError(@NotNull final String message) {
super(message);
}

View File

@@ -1,5 +1,6 @@
package com.willfp.eco.core.proxy.exceptions;
import com.willfp.eco.core.proxy.ProxyConstants;
import org.jetbrains.annotations.NotNull;
/**
@@ -10,8 +11,17 @@ public class UnsupportedVersionException extends ProxyError {
* Thrown if the server is running an unsupported NMS version.
*
* @param message The message to send.
* @deprecated Use the default constructor.
*/
@Deprecated(since = "6.24.0")
public UnsupportedVersionException(@NotNull final String message) {
super(message);
}
/**
* Thrown if the server is running an unsupported NMS version.
*/
public UnsupportedVersionException() {
super("You're running an unsupported server version: " + ProxyConstants.NMS_VERSION);
}
}