/* */ throws IOException, ClassNotFoundException
/* */ {
/* 116 */ if (this.cipher == null)
/* 117 */ throw new IllegalStateException("Cipher is null for algo=" + this.cipherAlgorithm);
/* 118 */ CipherInputStream cis = new CipherInputStream(inputStream, this.cipher);
/* 119 */ SerializationManager sm = SerializationStreamFactory.getManagerInstance(getSerializationType());
/* 120 */ ObjectInputStream ois = sm.createRegularInput(cis);
/* */
/* 122 */ Object obj = null;
/* 123 */ if (this.wrappedUnMarshaller != null)
/* */ {
/* 125 */ if ((this.wrappedUnMarshaller instanceof VersionedUnMarshaller)) {