Exception: Saklient::Cloud::Errors::ReplicaNotFoundException

Inherits:
Errors::HttpNotFoundException show all
Defined in:
lib/saklient/cloud/errors/replica_not_found_exception.rb

Overview

対象が見つかりません. このストレージには指定リソースの複製が存在しません.

Instance Attribute Summary

Attributes inherited from Errors::HttpException

#code, #status

Instance Method Summary (collapse)

Constructor Details

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

Returns a new instance of ReplicaNotFoundException

Parameters:

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


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

def initialize(status, code = nil, message = '')
  super(status, code, (message).nil? || message == '' ? '対象が見つかりません。このストレージには指定リソースの複製が存在しません。' : message)
end