Dashboard
PHP:
8.2.30
OS:
Linux
User:
dh_nv8b2m
/
/
usr
/
lib
/
python3
/
dist-packages
/
xdg
/
__pycache__
📤 Upload
📝 New File
📁 New Folder
Close
Editing: Exceptions.cpython-310.pyc
o �)X� � @ s� d Z dZG dd� de�ZG dd� de�ZG dd� de�ZG dd � d e�ZG d d� de�ZG dd � d e�ZG dd� de�Z G dd� de�Z dS )z' Exception Classes for the xdg package Fc @ s e Zd ZdZdd� Zdd� ZdS )�Errorz'Base class for exceptions defined here.c C s || _ t�| |� d S �N)�msg� Exception�__init__)�selfr � r �0/usr/lib/python3/dist-packages/xdg/Exceptions.pyr s zError.__init__c C s | j S r )r )r r r r �__str__ s z Error.__str__N)�__name__� __module__�__qualname__�__doc__r r r r r r r s r c @ � e Zd ZdZdd� ZdS )�ValidationErrorzXRaised when a file fails to validate. The filename is the .file attribute. c C �$ || _ || _t�| d||f � d S )Nz!ValidationError in file '%s': %s �r �filer r �r r r r r r r � zValidationError.__init__N�r r r r r r r r r r � r c @ r )�ParsingErrorzWRaised when a file cannot be parsed. The filename is the .file attribute. c C r )NzParsingError in file '%s', %sr r r r r r r zParsingError.__init__Nr r r r r r r r c @ r )� NoKeyErrorzyRaised when trying to access a nonexistant key in an INI-style file. Attributes are .key, .group and .file. c C �, t �| d|||f � || _|| _|| _d S )Nz"No key '%s' in group %s of file %s�r r �key�groupr �r r r r r r r r ( � zNoKeyError.__init__Nr r r r r r # r r c @ r )�DuplicateKeyErrorzpRaised when the same key occurs twice in an INI-style file. Attributes are .key, .group and .file. c C r )Nz)Duplicate key '%s' in group %s of file %sr r r r r r 3 r zDuplicateKeyError.__init__Nr r r r r r . r r c @ r )�NoGroupErrorzuRaised when trying to access a nonexistant group in an INI-style file. Attributes are .group and .file. c C �$ t �| d||f � || _|| _d S )NzNo group: %s in file %s�r r r r �r r r r r r r >