summaryrefslogtreecommitdiff
path: root/lib/chef_zero/data_store/data_error.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef_zero/data_store/data_error.rb')
-rw-r--r--lib/chef_zero/data_store/data_error.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/chef_zero/data_store/data_error.rb b/lib/chef_zero/data_store/data_error.rb
index 9822a6b..b392e58 100644
--- a/lib/chef_zero/data_store/data_error.rb
+++ b/lib/chef_zero/data_store/data_error.rb
@@ -19,13 +19,14 @@
module ChefZero
module DataStore
class DataError < StandardError
+ attr_reader :path, :cause
+
def initialize(path, cause = nil)
@path = path
@cause = cause
+ path_for_msg = path.nil? ? "nil" : "/#{path.join('/')}"
+ super "Data path: #{path_for_msg}"
end
-
- attr_reader :path
- attr_reader :cause
end
end
end