Exception: Saklient::Cloud::Errors::FileNotUploadedException

Inherits:
Errors::HttpConflictException show all
Defined in:
lib/saklient/cloud/errors/file_not_uploaded_exception.rb

Overview

要求された操作を行えません. ファイルをアップロード後に実行してください.

Instance Attribute Summary

Attributes inherited from Errors::HttpException

#code, #status

Instance Method Summary (collapse)

Constructor Details

- (FileNotUploadedException) initialize(status, code = nil, message = '')

Returns a new instance of FileNotUploadedException

Parameters:

  • status (Fixnum)
  • code (String) (defaults to: nil)
  • message (String) (defaults to: '')


17
18
19
# File 'lib/saklient/cloud/errors/file_not_uploaded_exception.rb', line 17

def initialize(status, code = nil, message = '')
  super(status, code, (message).nil? || message == '' ? '要求された操作を行えません。ファイルをアップロード後に実行してください。' : message)
end