module Scrivito # @api public class ScrivitoError < StandardError end # @api public class ResourceNotFound < ScrivitoError end # @api public class ObjClassNotFound < ResourceNotFound end # 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 class TransformationError < ScrivitoError attr_reader :code def initialize(message, code) @code = code super(message) end end # @api beta class TransformationSourceError < TransformationError end # @api beta class TransformationDefinitionError < TransformationError end end # module Scrivito