lib/receptacle/errors.rb in receptacle-1.0.0 vs lib/receptacle/errors.rb in receptacle-2.0.0
- old
+ new
@@ -2,13 +2,13 @@
module Receptacle
module Errors
class NotConfigured < StandardError
attr_reader :repo
+
def initialize(repo:)
@repo = repo
super("Missing Configuration for repository: <#{repo}>")
end
end
- class ReservedMethodName < StandardError; end
end
end