694695696697698699700701
reader.close(); } return sb; } catch (IOException e) { throw new QuercusRuntimeException(e); } }
736737738739740741742743
sublen = SIZE; out.write(_bufferList[chunk], 0, sublen); } } catch (IOException e) { throw new QuercusRuntimeException(e); } }
6970717273747576
{ try { return _url.openStream(); } catch (IOException e) { throw new QuercusRuntimeException(e); } }
230231232233234235236237238239240
cl = Env.getInstance().findClass(iface, ! isJavaClassDef, true); if (cl == null) throw new QuercusRuntimeException(L.l("cannot find interface {0}", iface)); // _instanceofSet.addAll(cl.getInstanceofSet()); ClassDef ifaceDef = cl.getClassDef();
179217931794179517961797179817991800
*/ if (fun != null) return fun; else { throw new QuercusRuntimeException(L.l("{0}::{1} is an unknown method", getName(), name)); } }
18121813181418151816181718181819
Object obj = _constJavaMap.get(name); if (obj != null) return env.wrapJava(obj); throw new QuercusRuntimeException(L.l("{0}::{1} is an unknown constant", getName(), name)); }
577578579580581582583584