1 #!/usr/bin/python -tt 2 3 4 -class RpmUtilsError(Exception): 5 6 """ Exception thrown for anything rpmUtils related. """ 7 8 - def __init__(self, args=None): 9 Exception.__init__(self, args) 10