diff options
author | tylercloke <tylercloke@gmail.com> | 2015-04-23 13:35:58 -0700 |
---|---|---|
committer | tylercloke <tylercloke@gmail.com> | 2015-04-28 14:24:57 -0700 |
commit | 2c07a07d816937c5228b67836782a19fb7e7a30b (patch) | |
tree | 7c5febef7c1b63a3cd720e3562aa3000e84a8f4e /lib/chef/exceptions.rb | |
parent | afa4b9e4034628bf5a4f337cf57cfa657df6ec3d (diff) | |
download | chef-2c07a07d816937c5228b67836782a19fb7e7a30b.tar.gz |
Implemented `knife user key create` and `knife client key create`.
Implemented using a common service class that contains most of the actual functionality outside of parsing and inheriting Chef::Knife.
Diffstat (limited to 'lib/chef/exceptions.rb')
-rw-r--r-- | lib/chef/exceptions.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/chef/exceptions.rb b/lib/chef/exceptions.rb index cfedbfd0d9..da562e70f4 100644 --- a/lib/chef/exceptions.rb +++ b/lib/chef/exceptions.rb @@ -70,6 +70,7 @@ class Chef class InvalidPrivateKey < ArgumentError; end class ConfigurationError < ArgumentError; end class MissingKeyAttribute < ArgumentError; end + class KeyCommandInputError < ArgumentError; end class InvalidKeyArgument < ArgumentError; end class InvalidKeyAttribute < ArgumentError; end class RedirectLimitExceeded < RuntimeError; end |