6 lines
No EOL
159 B
Kotlin
6 lines
No EOL
159 B
Kotlin
package nl.kallestruik.darena.exceptions
|
|
|
|
class ArenaWorldSaveException(
|
|
message: String? = null,
|
|
cause: Throwable? = null
|
|
): Exception(message, cause) |