Files
oxygen-api/src/main/kotlin/top/fatweb/oxygen/api/exception/DatabaseUpdateException.kt
2024-02-01 16:51:20 +08:00

11 lines
302 B
Kotlin

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)