exception.py (ironic-17.0.2) | : | exception.py (ironic-17.0.3) | ||
---|---|---|---|---|
skipping to change at line 308 | skipping to change at line 308 | |||
_msg_fmt = _('Driver %(driver)s does not support %(extension)s ' | _msg_fmt = _('Driver %(driver)s does not support %(extension)s ' | |||
'(disabled or not implemented).') | '(disabled or not implemented).') | |||
class GlanceConnectionFailed(IronicException): | class GlanceConnectionFailed(IronicException): | |||
_msg_fmt = _("Connection to glance endpoint %(endpoint)s failed: " | _msg_fmt = _("Connection to glance endpoint %(endpoint)s failed: " | |||
"%(reason)s") | "%(reason)s") | |||
class ImageNotAuthorized(NotAuthorized): | class ImageNotAuthorized(NotAuthorized): | |||
_msg_fmt = _("Not authorized for image %(image_id)s.") | _msg_fmt = _("Not authorized for image %(image_id)s.") | |||
class InvalidImageRef(Invalid): | class InvalidImageRef(InvalidParameterValue): | |||
_msg_fmt = _("Invalid image href %(image_href)s.") | _msg_fmt = _("Invalid image href %(image_href)s.") | |||
class ImageRefValidationFailed(IronicException): | class ImageRefValidationFailed(IronicException): | |||
_msg_fmt = _("Validation of image href %(image_href)s failed, " | _msg_fmt = _("Validation of image href %(image_href)s failed, " | |||
"reason: %(reason)s") | "reason: %(reason)s") | |||
class ImageDownloadFailed(IronicException): | class ImageDownloadFailed(IronicException): | |||
_msg_fmt = _("Failed to download image %(image_href)s, reason: %(reason)s") | _msg_fmt = _("Failed to download image %(image_href)s, reason: %(reason)s") | |||
class KeystoneUnauthorized(IronicException): | class KeystoneUnauthorized(IronicException): | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added |