cataract 0.2.5 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/lib/cataract/pure.rb CHANGED
@@ -18,13 +18,6 @@ if defined?(Cataract::NATIVE_EXTENSION_LOADED)
18
18
  raise LoadError, 'Cataract C extension is already loaded. Cannot load pure Ruby version.'
19
19
  end
20
20
 
21
- # Define base module and error classes first
22
- module Cataract
23
- class Error < StandardError; end
24
- class DepthError < Error; end
25
- class SizeError < Error; end
26
- end
27
-
28
21
  require_relative 'error'
29
22
 
30
23
  require_relative 'version'