class Saklient::Cloud::Errors::ReplicaNotFoundException
対象が見つかりません. このストレージには指定リソースの複製が存在しません.
Public Class Methods
new(status, code = nil, message = '')
click to toggle source
@param [Fixnum] status @param [String] code @param [String] message
Calls superclass method
Saklient::Errors::HttpNotFoundException::new
# File lib/saklient/cloud/errors/replica_not_found_exception.rb, line 16 def initialize(status, code = nil, message = '') super(status, code, (message).nil? || message == '' ? '対象が見つかりません。このストレージには指定リソースの複製が存在しません。' : message) end