ultrasonic-app-subsonic-and.../ultrasonic/src/main/kotlin/org/moire/ultrasonic/service/OfflineException.kt

17 lines
412 B
Kotlin
Raw Normal View History

2013-04-06 21:47:24 +02:00
/*
2021-05-26 23:17:52 +02:00
* OfflineException.kt
* Copyright (C) 2009-2021 Ultrasonic developers
*
* Distributed under terms of the GNU GPLv3 license.
2013-04-06 21:47:24 +02:00
*/
2021-05-26 23:17:52 +02:00
package org.moire.ultrasonic.service
2013-04-06 21:47:24 +02:00
/**
* Thrown by service methods that are not available in offline mode.
*/
2021-05-26 23:17:52 +02:00
class OfflineException(message: String?) : Exception(message) {
companion object {
private const val serialVersionUID = -4479642294747429444L
}
2021-05-26 23:25:56 +02:00
}