aboutsummaryrefslogtreecommitdiffhomepage
path: root/ruby/lib/google/protobuf.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby/lib/google/protobuf.rb')
-rw-r--r--ruby/lib/google/protobuf.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/ruby/lib/google/protobuf.rb b/ruby/lib/google/protobuf.rb
index 99b17929..74ea770d 100644
--- a/ruby/lib/google/protobuf.rb
+++ b/ruby/lib/google/protobuf.rb
@@ -31,6 +31,15 @@
# require mixins before we hook them into the java & c code
require 'google/protobuf/message_exts'
+# We define these before requiring the platform-specific modules.
+# That way the module init can grab references to these.
+module Google
+ module Protobuf
+ class Error < RuntimeError; end
+ class ParseError < Error; end
+ end
+end
+
if RUBY_PLATFORM == "java"
require 'json'
require 'google/protobuf_java'