lib/rubikon/exceptions.rb in rubikon-0.4.1 vs lib/rubikon/exceptions.rb in rubikon-0.5.0
- old
+ new
@@ -76,6 +76,18 @@
super "Unknown parameter: #{name}"
end
end
+ # Raised if a command has been supplied that does not exist
+ #
+ # @author Sebastian Staudt
+ # @since 0.5.0
+ class UnsupportedConfigFormatError < ArgumentError
+
+ def initialize(ext)
+ super "Unknown config file extension: #{ext}"
+ end
+
+ end
+
end