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

UploadAttachmentFailedException.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: 05374669d0af3635138e97f040b45b49235ce82b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package it.niedermann.nextcloud.deck.exceptions;

public class UploadAttachmentFailedException extends Exception {

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

    public UploadAttachmentFailedException(String message, Throwable cause) {
        super(message, cause);
    }
}