From 68e5372b2e682d19068a4a221ce427847714d657 Mon Sep 17 00:00:00 2001 From: Andrew Steinborn Date: Wed, 27 Nov 2019 01:04:48 -0500 Subject: [PATCH] QuietException should be a RuntimeException --- .../com/velocitypowered/proxy/util/except/QuietException.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/src/main/java/com/velocitypowered/proxy/util/except/QuietException.java b/proxy/src/main/java/com/velocitypowered/proxy/util/except/QuietException.java index f095f5779..d16a00724 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/util/except/QuietException.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/util/except/QuietException.java @@ -4,7 +4,7 @@ package com.velocitypowered.proxy.util.except; * A special-purpose exception thrown when we want to indicate an error condition but do not want * to see a large stack trace in logs. */ -public class QuietException extends Exception { +public class QuietException extends RuntimeException { public QuietException(String message) { super(message);