Optimize code. Add kdoc.

This commit is contained in:
2023-12-25 17:27:50 +08:00
parent 31358107c7
commit 15f631971c
27 changed files with 188 additions and 36 deletions

View File

@@ -1,5 +1,11 @@
package top.fatweb.api.exception
/**
* Email settings not configured exception
*
* @author FatttSnake, fatttsnake@gmail.com
* @since 1.0.0
*/
class NoEmailConfigException(
vararg configs: String
) : RuntimeException("Email settings not configured: ${configs.joinToString(", ")}")