polars-df 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,20 @@
1
+ module Polars
2
+ # @private
3
+ class Error < StandardError; end
4
+
5
+ # @private
6
+ class RowsException < Error; end
7
+
8
+ # @private
9
+ class TooManyRowsReturned < RowsException; end
10
+
11
+ # @private
12
+ class NoRowsReturned < RowsException; end
13
+
14
+ # @private
15
+ class Todo < Error
16
+ def message
17
+ "not implemented yet"
18
+ end
19
+ end
20
+ end