Home | History | Annotate | Download | only in python_gflags

Lines Matching refs:IllegalFlagValue

154 satisfied, an IllegalFlagValue exception will be raised. See
503 class IllegalFlagValue(FlagsError):
1024 raise IllegalFlagValue(flag)
1085 IllegalFlagValue: if validation fails for at least one validator
1093 raise IllegalFlagValue('%s: %s' % (message, str(e)))
1652 raise IllegalFlagValue('--flagfile with no argument')
1886 except ValueError, e: # recast ValueError as IllegalFlagValue
1887 raise IllegalFlagValue("flag --%s=%s: %s" % (self.name, argument, e))