summaryrefslogtreecommitdiff
path: root/qa/qa/resource/errors.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/resource/errors.rb')
-rw-r--r--qa/qa/resource/errors.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/qa/qa/resource/errors.rb b/qa/qa/resource/errors.rb
new file mode 100644
index 00000000000..a6933a6c9a7
--- /dev/null
+++ b/qa/qa/resource/errors.rb
@@ -0,0 +1,15 @@
+# frozen_string_literal: true
+
+module QA
+ module Resource
+ module Errors
+ ResourceFabricationFailedError = Class.new(RuntimeError)
+ ResourceNotDeletedError = Class.new(RuntimeError)
+ ResourceNotFoundError = Class.new(RuntimeError)
+ ResourceQueryError = Class.new(RuntimeError)
+ ResourceUpdateFailedError = Class.new(RuntimeError)
+ ResourceURLMissingError = Class.new(RuntimeError)
+ InternalServerError = Class.new(RuntimeError)
+ end
+ end
+end