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