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

ConfigruationError.js « Exception « src - git.mdns.eu/nextcloud/passwords-client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 12bb57e8d700613618ac1e2989643a501eb0c7fd (plain)
1
2
3
4
5
6
7
8
9
export default class ConfigurationError extends Error {

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