10 lines
222 B
Kotlin
10 lines
222 B
Kotlin
package top.fatweb.api.exception
|
|
|
|
/**
|
|
* User not found exception
|
|
*
|
|
* @author FatttSnake, fatttsnake@gmail.com
|
|
* @since 1.0.0
|
|
* @see RuntimeException
|
|
*/
|
|
class UserNotFoundException : RuntimeException("User not found") |