Implement update tool

This commit is contained in:
2024-02-01 16:51:20 +08:00
parent 1ce60d1bfb
commit 04587fbb7a
27 changed files with 204 additions and 75 deletions

View File

@@ -1,3 +1,11 @@
package top.fatweb.oxygen.api.exception
/**
* Database update exception
*
* @param message Exception message
* @author FatttSnake, fatttsnake@gmail.com
* @since 1.0.0
* @see RuntimeException
*/
class DatabaseUpdateException(message: String = "Database update failed"): RuntimeException(message)