Lines Matching refs:RtiException
286 class RtiException(Exception):
289 class RtiCallFailed(RtiException):
291 return "Unable to call webrti: %s" % (RtiException.__str__(self))
293 class RtiSystemProblem(RtiException):
295 return "RTI status cannot be determined for CR: %s" % (RtiException.__str__(self))
297 class RtiIncorrectCR(RtiException):
299 return "Incorrect CR number specified: %s" % (RtiException.__str__(self))
301 class RtiNotFound(RtiException):
303 return "RTI not found for CR: %s" % (RtiException.__str__(self))
305 class RtiNeedConsolidation(RtiException):
307 return "More than one consolidation has this CR: %s" % (RtiException.__str__(self))
309 class RtiBadGate(RtiException):
311 return "Incorrect gate name specified: %s" % (RtiException.__str__(self))
315 return "Unknown webrti return code: %s" % (RtiException.__str__(self))
317 class RtiOffSwan(RtiException):
319 return "RTI status checks need SWAN access: %s" % (RtiException.__str__(self))