DArena/src/main/kotlin/nl/kallestruik/darena/exceptions/ArenaWorldSaveException.kt
2021-10-25 14:54:58 +02:00

6 lines
No EOL
159 B
Kotlin

package nl.kallestruik.darena.exceptions
class ArenaWorldSaveException(
message: String? = null,
cause: Throwable? = null
): Exception(message, cause)