mirror of https://github.com/usbharu/Hideout.git
9 lines
305 B
Kotlin
9 lines
305 B
Kotlin
package dev.usbharu.hideout.exception
|
|
|
|
open class FailedToGetResourcesException : IllegalArgumentException {
|
|
constructor() : super()
|
|
constructor(s: String?) : super(s)
|
|
constructor(message: String?, cause: Throwable?) : super(message, cause)
|
|
constructor(cause: Throwable?) : super(cause)
|
|
}
|