Home | History | Annotate | Download | only in io

Lines Matching defs:ClassNotFoundException

120  *     throws IOException, ClassNotFoundException;
353 * @throws ClassNotFoundException Class of a serialized object cannot be
364 throws IOException, ClassNotFoundException
375 ClassNotFoundException ex = handles.lookupException(passHandle);
398 * @throws ClassNotFoundException Class definition of a serialized object
409 throws IOException, ClassNotFoundException
449 * @throws ClassNotFoundException if class of an object to deserialize
459 public Object readUnshared() throws IOException, ClassNotFoundException {
465 ClassNotFoundException ex = handles.lookupException(passHandle);
487 * @throws ClassNotFoundException if the class of a serialized object
494 throws IOException, ClassNotFoundException
513 ClassNotFoundException ex = handles.lookupException(passHandle);
525 * @throws ClassNotFoundException if the class of a serialized object
533 throws IOException, ClassNotFoundException
608 * <code>ClassNotFoundException</code> and the name of the passed
614 * Otherwise, the <code>ClassNotFoundException</code> will be thrown to
620 * @throws ClassNotFoundException if class of a serialized object cannot
624 throws IOException, ClassNotFoundException
629 } catch (ClassNotFoundException ex) {
677 * will throw a <code>ClassNotFoundException</code> containing the
685 * @throws ClassNotFoundException if the proxy class or any of the
691 throws IOException, ClassNotFoundException
719 throw new ClassNotFoundException(null, e);
824 * @throws ClassNotFoundException If the Class of a serialized object used
830 throws IOException, ClassNotFoundException
1479 * ClassNotFoundException will be associated with the class' handle in the
1490 ClassNotFoundException resolveEx = desc.getResolveException();
1502 * resolved to a class in the local VM, a ClassNotFoundException is
1538 * ClassNotFoundException is associated with the descriptor's handle.
1558 ClassNotFoundException resolveEx = null;
1562 resolveEx = new ClassNotFoundException("null class");
1573 } catch (ClassNotFoundException ex) {
1589 * ClassNotFoundException is associated with the descriptor's handle.
1605 } catch (ClassNotFoundException ex) {
1611 ClassNotFoundException resolveEx = null;
1616 resolveEx = new ClassNotFoundException("null class");
1620 } catch (ClassNotFoundException ex) {
1677 ClassNotFoundException resolveEx = desc.getResolveException();
1734 ClassNotFoundException resolveEx = desc.getResolveException();
1765 * class is unresolvable (in which case a ClassNotFoundException will be
1795 ClassNotFoundException resolveEx = desc.getResolveException();
1845 } catch (ClassNotFoundException ex) {
1880 * ClassNotFoundException) instance data for each serializable class of
1903 } catch (ClassNotFoundException ex) {
3319 (ClassNotFoundException) entries[target]);
3349 * Associates a ClassNotFoundException (if one not already associated)
3354 void markException(int handle, ClassNotFoundException ex) {
3440 * associated ClassNotFoundException.
3449 * Looks up and returns ClassNotFoundException associated with the
3451 * if there is no ClassNotFoundException associated with the handle.
3453 ClassNotFoundException lookupException(int handle) {
3456 (ClassNotFoundException) entries[handle] : null;