Welcome to mirror list, hosted at ThFree Co, Russian Federation.

OfflineException.java « exceptions « deck « nextcloud « niedermann « it « java « main « src « app - github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c63b801a0f0ce90fc4b306cf7d14fd8f973f230c (plain)
1
2
3
4
5
6
7
package it.niedermann.nextcloud.deck.exceptions;

public class OfflineException extends IllegalStateException {
    public OfflineException() {
        super("Device is currently offline.");
    }
}