Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-12-28 09:00:09 +01:00
Change CancelException message
Dieser Commit ist enthalten in:
Ursprung
2f9c66eafb
Commit
d14a74f29e
@ -8,7 +8,7 @@ import us.myles.ViaVersion.api.Via;
|
|||||||
* Specifically extends {@link DecoderException} to prevent netty from wrapping the exception.
|
* Specifically extends {@link DecoderException} to prevent netty from wrapping the exception.
|
||||||
*/
|
*/
|
||||||
public class CancelDecoderException extends DecoderException {
|
public class CancelDecoderException extends DecoderException {
|
||||||
public static final CancelDecoderException CACHED = new CancelDecoderException("CACHED") {
|
public static final CancelDecoderException CACHED = new CancelDecoderException("This packet is supposed to be cancelled; If you have debug enabled, you can ignore these") {
|
||||||
@Override
|
@Override
|
||||||
public Throwable fillInStackTrace() {
|
public Throwable fillInStackTrace() {
|
||||||
return this;
|
return this;
|
||||||
|
@ -8,7 +8,7 @@ import us.myles.ViaVersion.api.Via;
|
|||||||
* Specifically extends {@link EncoderException} to prevent netty from wrapping the exception.
|
* Specifically extends {@link EncoderException} to prevent netty from wrapping the exception.
|
||||||
*/
|
*/
|
||||||
public class CancelEncoderException extends EncoderException {
|
public class CancelEncoderException extends EncoderException {
|
||||||
public static final CancelEncoderException CACHED = new CancelEncoderException("CACHED") {
|
public static final CancelEncoderException CACHED = new CancelEncoderException("This packet is supposed to be cancelled; If you have debug enabled, you can ignore these") {
|
||||||
@Override
|
@Override
|
||||||
public Throwable fillInStackTrace() {
|
public Throwable fillInStackTrace() {
|
||||||
return this;
|
return this;
|
||||||
|
@ -8,7 +8,7 @@ import us.myles.ViaVersion.api.Via;
|
|||||||
* Internally catched to then throw the appropriate {@link CodecException} for Netty's handler.
|
* Internally catched to then throw the appropriate {@link CodecException} for Netty's handler.
|
||||||
*/
|
*/
|
||||||
public class CancelException extends Exception {
|
public class CancelException extends Exception {
|
||||||
public static final CancelException CACHED = new CancelException("Cached - Enable /viaver debug to not use cached exception") {
|
public static final CancelException CACHED = new CancelException("This packet is supposed to be cancelled; If you have debug enabled, you can ignore these") {
|
||||||
@Override
|
@Override
|
||||||
public Throwable fillInStackTrace() {
|
public Throwable fillInStackTrace() {
|
||||||
return this;
|
return this;
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren