Exception: FileConvert::Exception::DownloadConnectionError
- Inherits:
-
StandardError
- Object
- StandardError
- FileConvert::Exception::DownloadConnectionError
- Defined in:
- lib/file_convert/exception.rb
Instance Method Summary collapse
-
#initialize(result) ⇒ DownloadConnectionError
constructor
A new instance of DownloadConnectionError.
- #message ⇒ Object
Constructor Details
#initialize(result) ⇒ DownloadConnectionError
Returns a new instance of DownloadConnectionError.
32 33 34 35 |
# File 'lib/file_convert/exception.rb', line 32 def initialize(result) super() @result = result end |
Instance Method Details
#message ⇒ Object
37 38 39 40 41 42 |
# File 'lib/file_convert/exception.rb', line 37 def ''" An error occured connection to Google Drive. Result of request was: #{@result} "'' end |