Searched refs:majorCode (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DGSSExceptionImpl.java42 * A constructor that takes the majorCode as well as the mech oid that
45 GSSExceptionImpl(int majorCode, Oid mech) { argument
46 super(majorCode);
51 * A constructor that takes the majorCode as well as the message that
54 public GSSExceptionImpl(int majorCode, String majorMessage) { argument
55 super(majorCode);
60 * A constructor that takes the majorCode and the exception cause.
62 public GSSExceptionImpl(int majorCode, Exception cause) { argument
63 super(majorCode);
68 * A constructor that takes the majorCode, th
71 GSSExceptionImpl(int majorCode, String majorMessage, Exception cause) argument
[all...]
/openjdk7/jdk/src/share/classes/org/ietf/jgss/
H A DGSSException.java236 * @param majorCode the The GSS error code for the problem causing this
239 public GSSException (int majorCode) { argument
241 if (validateMajor(majorCode))
242 major = majorCode;
251 * @param majorCode the fatal error code causing this exception.
254 GSSException (int majorCode, String majorString) { argument
256 if (validateMajor(majorCode))
257 major = majorCode;
271 * @param majorCode the GSS error code for the problem causing this
278 public GSSException (int majorCode, in argument
[all...]

Completed in 37 milliseconds