refac: UnexpectedThrowable

This commit is contained in:
2025-06-13 18:50:18 +03:00
parent 7b789f0f0b
commit 213fff2c9d
3 changed files with 47 additions and 54 deletions

View File

@@ -0,0 +1,7 @@
package ru.di9.minecraft.shared;
public class UnexpectedThrowable extends RuntimeException {
public UnexpectedThrowable(String message, Throwable cause) {
super(message, cause);
}
}