lib/chronicle/etl/exceptions.rb in chronicle-etl-0.4.3 vs lib/chronicle/etl/exceptions.rb in chronicle-etl-0.4.4
- old
+ new
@@ -43,17 +43,10 @@
class ExtractionError < Error; end
class SerializationError < Error; end
- class TransformationError < Error
- attr_reader :transformation
-
- def initialize(message=nil, transformation:)
- super(message)
- @transformation = transformation
- end
- end
+ class TransformationError < Error; end
class UntransformableRecordError < TransformationError; end
end
end