lib/overcommit/exceptions.rb in overcommit-0.28.0 vs lib/overcommit/exceptions.rb in overcommit-0.29.0

- old
+ new

@@ -1,8 +1,11 @@ module Overcommit::Exceptions # Raised when a {Configuration} could not be loaded from a file. class ConfigurationError < StandardError; end + # Raised when the Overcommit configuration file signature has changed. + class ConfigurationSignatureChanged < StandardError; end + # Raised when trying to read/write to/from the local repo git config fails. class GitConfigError < StandardError; end # Raised when there was a problem reading submodule information for a repo. class GitSubmoduleError < StandardError; end