Package copr_cli :: Module copr_exceptions
[hide private]
[frames] | no frames]

Source Code for Module copr_cli.copr_exceptions

 1  #-*- coding: UTF-8 -*- 
 2   
 3  """ 
 4  Exceptions for copr-cli 
 5  """ 
 6   
7 -class CoprCliException(Exception):
8 """ Basic exception class for copr-cli. """ 9 pass
10 11
12 -class CoprCliNoConfException(CoprCliException):
13 """ Exception thrown when no config file is found. """ 14 pass
15 16
17 -class CoprCliConfigException(CoprCliException):
18 """ Exception thrown when the config file is incomplete or 19 malformated. 20 """ 21 pass
22