public SASTargetInterceptor(Codec codec) {
this.codec = codec;
// build encapsulated GSSUP error token for ContextError messages (the error code within the error token is
// GSS_UP_S_G_UNSPECIFIED, which says nothing about the cause of the error).
ErrorToken errorToken = new ErrorToken(GSS_UP_S_G_UNSPECIFIED.value);
Any any = ORB.init().create_any();
byte[] encapsulatedErrorToken;
ErrorTokenHelper.insert(any, errorToken);
try {