Class GSSAPI.Error
- Description
Error object used for GSS-API errors.
- Inherit
Generic
inherit Error.Generic : Generic
- Constant
is_gssapi_error
Constant error_type
constantintGSSAPI.Error.is_gssapi_error
constantstringGSSAPI.Error.error_type- Description
Object recognition constants.
- Variable
major_status
intGSSAPI.Error.major_status- Description
The major status code. This is a bitwise OR of one routine error code and zero or more supplementary error info bits.
See RFC 2743 section 1.2.1.1 and RFC 2744 section 3.9.1. Note that the calling errors mentioned in RFC 2744 are never thrown.
- See also
- Variable
minor_status
intGSSAPI.Error.minor_status- Description
The minor status code specific for the mechanism.
- See also
- Method
create
GSSAPI.Error GSSAPI.Error(void|intmajor,void|intminor,void|stringmech,void|stringmessage,void|arraybacktrace)- Parameter
major Initial value for major_status.
- Parameter
minor Initial value for minor_status.
- Parameter
mech Object identifier on dotted-decimal form for the mechanism that minor applies to.
- Parameter
message Error message. This is prepended to the message generated from major_status and/or minor_status.
": "is inserted in between.- Parameter
backtrace Backtrace. The current backtrace for the calling function is used if left out.