about summary refs log tree commit homepage
path: root/lib/mogilefs/mogilefs.rb
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2008-10-15 16:30:15 -0700
committerEric Wong <normalperson@yhbt.net>2008-10-15 16:30:37 -0700
commit2c09ff42b2e96f28dda283730bdb9deb68946843 (patch)
tree69029e602cae877155306bd23de9dc4740e2f8df /lib/mogilefs/mogilefs.rb
parent0d4068e5e890aad959419ad932a162ab170868c5 (diff)
downloadmogilefs-client-2c09ff42b2e96f28dda283730bdb9deb68946843.tar.gz
Also easier to trap and deal with
Diffstat (limited to 'lib/mogilefs/mogilefs.rb')
-rw-r--r--lib/mogilefs/mogilefs.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/mogilefs/mogilefs.rb b/lib/mogilefs/mogilefs.rb
index 848061e..0a62dba 100644
--- a/lib/mogilefs/mogilefs.rb
+++ b/lib/mogilefs/mogilefs.rb
@@ -121,7 +121,7 @@ class MogileFS::MogileFS < MogileFS::Client
   # The +block+ operates like File.open.
 
   def new_file(key, klass, bytes = 0, &block) # :yields: file
-    raise 'readonly mogilefs' if readonly?
+    raise MogileFS::ReadOnlyError if readonly?
 
     res = @backend.create_open(:domain => @domain, :class => klass,
                                :key => key, :multi_dest => 1)
@@ -161,7 +161,7 @@ class MogileFS::MogileFS < MogileFS::Client
   # either a file name or an object that responds to #read.
 
   def store_file(key, klass, file)
-    raise 'readonly mogilefs' if readonly?
+    raise MogileFS::ReadOnlyError if readonly?
 
     new_file key, klass do |mfp|
       if file.respond_to? :sysread then
@@ -181,7 +181,7 @@ class MogileFS::MogileFS < MogileFS::Client
   # Stores +content+ into +key+ in class +klass+.
 
   def store_content(key, klass, content)
-    raise 'readonly mogilefs' if readonly?
+    raise MogileFS::ReadOnlyError if readonly?
 
     new_file key, klass do |mfp|
       mfp << content
@@ -194,7 +194,7 @@ class MogileFS::MogileFS < MogileFS::Client
   # Removes +key+.
 
   def delete(key)
-    raise 'readonly mogilefs' if readonly?
+    raise MogileFS::ReadOnlyError if readonly?
 
     @backend.delete :domain => @domain, :key => key
   end
@@ -210,7 +210,7 @@ class MogileFS::MogileFS < MogileFS::Client
   # Renames a key +from+ to key +to+.
 
   def rename(from, to)
-    raise 'readonly mogilefs' if readonly?
+    raise MogileFS::ReadOnlyError if readonly?
 
     @backend.rename :domain => @domain, :from_key => from, :to_key => to
     nil