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

UnknownAction.js « PassLink « Exception « src - git.mdns.eu/nextcloud/passwords-client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f8098294a0c282dac8ed0bb0ec3b054c9ad73ab8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export default class InvalidLink extends Error {

    /**
     * @returns {String}
     */
    get name() {
        return 'InvalidLink';
    }

    /**
     * @param {String} action
     */
    constructor(action) {
        super(`Unknown PassLink action ${action}`);
    }
}