Exception: Acfs::Error

Inherits:
StandardError
  • Object
show all
Defined in:
lib/acfs/errors.rb

Overview

Acfs base error.

Instance Method Summary collapse

Constructor Details

#initialize(opts = {}, message = nil) ⇒ Error

Returns a new instance of Error.



7
8
9
10
# File 'lib/acfs/errors.rb', line 7

def initialize(opts = {}, message = nil)
  opts[:message] = message if message
  super opts[:message]
end