6 lines
173 B
Kotlin
6 lines
173 B
Kotlin
|
|
package at.eisibaer.jbear2.exception
|
||
|
|
|
||
|
|
open class StorageException(
|
||
|
|
override val message: String?,
|
||
|
|
override val cause: Throwable?
|
||
|
|
) : RuntimeException(message, cause)
|