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