lib/berkshelf/errors.rb in berkshelf-1.1.6 vs lib/berkshelf/errors.rb in berkshelf-1.2.0.rc1

- old
+ new

@@ -117,6 +117,12 @@ end class ConfigExists < BerkshelfError; status_code(116); end class ConfigurationError < BerkshelfError; status_code(117); end class CommandUnsuccessful < BerkshelfError; status_code(118); end + class InsufficientPrivledges < BerkshelfError; status_code(119); end + class ExplicitCookbookNotFound < BerkshelfError; status_code(120); end + class ValidationFailed < BerkshelfError; status_code(121); end + class InvalidVersionConstraint < BerkshelfError; status_code(122); end + class CommunitySiteError < BerkshelfError; status_code(123); end + class CookbookValidationFailure < BerkshelfError; status_code(124); end end