diff options
Diffstat (limited to 'installmethod.py')
-rw-r--r-- | installmethod.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/installmethod.py b/installmethod.py index a933d886a..19b0e0d74 100644 --- a/installmethod.py +++ b/installmethod.py @@ -17,6 +17,10 @@ from comps import ComponentSet from rhpl.log import log +class FileCopyException(Exception): + def __init__(self, s = ""): + self.str = s + class InstallMethod: |