lib/scrivito/errors.rb in scrivito_sdk-0.66.0 vs lib/scrivito/errors.rb in scrivito_sdk-0.70.0.rc1

- old
+ new

@@ -15,24 +15,27 @@ # this error is raised if scrivito detects an internal problem. # these errors should never occur when using the public api of the SDK. class InternalError < ScrivitoError end -# @api beta +# @api public class TransformationError < ScrivitoError attr_reader :code def initialize(message, code) @code = code super(message) end end -# @api beta +# @api public class TransformationSourceError < TransformationError end -# @api beta +# @api public class TransformationDefinitionError < TransformationError +end + +class TransferModificationsError < ScrivitoError end end # module Scrivito