]> Frank Brehm's Git Trees - pixelpark/create-terraform.git/commitdiff
New exceptions in lib/cr_tf/errors.py
authorFrank Brehm <frank.brehm@pixelpark.com>
Mon, 6 Sep 2021 14:10:14 +0000 (16:10 +0200)
committerFrank Brehm <frank.brehm@pixelpark.com>
Mon, 6 Sep 2021 14:10:14 +0000 (16:10 +0200)
lib/cr_tf/errors.py

index cd26e34668b672c8c3b78fd17fd3c7cf8dbf274e..1dda2c201258b5e0e507d7fafeccfe19003920f1 100644 (file)
@@ -16,7 +16,7 @@ from fb_tools.config import ConfigError
 
 from .xlate import XLATOR
 
-__version__ = '1.1.0'
+__version__ = '1.2.0'
 
 _ = XLATOR.gettext
 ngettext = XLATOR.ngettext
@@ -29,6 +29,20 @@ class TerraformObjectError(FbHandlerError):
     pass
 
 
+# =============================================================================
+class TerraformHandlerError(TerraformObjectError):
+    """Exception because of handler errors."""
+
+    pass
+
+
+# =============================================================================
+class TerraformVSphereError(TerraformObjectError):
+    """Exception because of VSphere configuration errors."""
+
+    pass
+
+
 # =============================================================================
 class TerraformVmError(TerraformObjectError):
     """Exception class on errors evaluation VM definition for terraform."""