File: exceptions.pyi

package info (click to toggle)
python-gssapi 1.10.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 876 kB
  • sloc: python: 3,707; sh: 198; makefile: 154; ansic: 60
file content (67 lines) | stat: -rw-r--r-- 1,689 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
from gssapi.raw.misc import GSSError

class ParameterReadError(GSSError): ...

class ParameterWriteError(GSSError): ...

class MalformedParameterError(GSSError): ...

class BadMechanismError(GSSError): ...

class BadNameError(GSSError): ...

class BadNameTypeError(GSSError): ...

class BadChannelBindingsError(GSSError): ...

class BadStatusError(GSSError): ...

class BadMICError(GSSError): ...

class MissingCredentialsError(GSSError): ...

class MissingContextError(GSSError): ...

class InvalidTokenError(GSSError): ...

class InvalidCredentialsError(GSSError): ...

class ExpiredCredentialsError(GSSError): ...

class ExpiredContextError(GSSError): ...

class BadQoPError(GSSError): ...

class UnauthorizedError(GSSError): ...

class OperationUnavailableError(GSSError): ...

class DuplicateCredentialsElementError(GSSError): ...

class MechanismNameRequiredError(GSSError): ...

class NameReadError(ParameterReadError, BadNameError): ...

class NameTypeReadError(ParameterReadError, BadNameTypeError): ...

class TokenReadError(ParameterReadError, InvalidTokenError): ...

class ContextReadError(ParameterReadError, MissingContextError): ...

class CredentialsReadError(ParameterReadError, MissingCredentialsError): ...

class ContextWriteError(ParameterWriteError, MissingContextError): ...

class CredentialsWriteError(ParameterWriteError, MissingCredentialsError): ...

class SupplementaryError(GSSError): ...

class DuplicateTokenError(SupplementaryError): ...

class ExpiredTokenError(SupplementaryError): ...

class TokenOutOfSequenceError(SupplementaryError): ...

class TokenTooLateError(TokenOutOfSequenceError): ...

class TokenTooEarlyError(TokenOutOfSequenceError): ...