Exception: Rmega::BandwidthLimitExceeded

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

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ BandwidthLimitExceeded

Returns a new instance of BandwidthLimitExceeded.



9
10
11
12
13
14
15
# File 'lib/rmega/errors.rb', line 9

def initialize(*args)
  if args.any?
    super
  else
    super("Transfer quota exceeded")
  end
end