Exception: WAZ::Blobs::InvalidOperation
- Inherits:
-
Storage::StorageException
- Object
- StandardError
- Storage::StorageException
- WAZ::Blobs::InvalidOperation
- Defined in:
- lib/waz/blobs/exceptions.rb
Overview
This exception is raised when the user tries to perform an operation over a snapshoted blob. Since Snapshots are read-only copies of the original blob they cannot be modified
Instance Method Summary collapse
-
#initialize ⇒ InvalidOperation
constructor
A new instance of InvalidOperation.
Constructor Details
#initialize ⇒ InvalidOperation
Returns a new instance of InvalidOperation.
6 7 8 |
# File 'lib/waz/blobs/exceptions.rb', line 6 def initialize() super("A snapshoted blob cannot be modified.") end |