QuietException should be a RuntimeException
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user