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

ServerAppVersionNotParsableException.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: 25665bebb9194c07d7be72c9b34f515812d39443 (plain)
1
2
3
4
5
6
7
8
package it.niedermann.nextcloud.deck.exceptions;

public class ServerAppVersionNotParsableException extends IllegalArgumentException {

    public ServerAppVersionNotParsableException(String message) {
        super(message);
    }
}