Home | History | Annotate | Download | only in io

Lines Matching defs:ClassNotFoundException

120  *     throws IOException, ClassNotFoundException;
354 * @throws ClassNotFoundException Class of a serialized object cannot be
365 throws IOException, ClassNotFoundException
376 ClassNotFoundException ex = handles.lookupException(passHandle);
399 * @throws ClassNotFoundException Class definition of a serialized object
410 throws IOException, ClassNotFoundException
450 * @throws ClassNotFoundException if class of an object to deserialize
460 public Object readUnshared() throws IOException, ClassNotFoundException {
466 ClassNotFoundException ex = handles.lookupException(passHandle);
488 * @throws ClassNotFoundException if the class of a serialized object
495 throws IOException, ClassNotFoundException
514 ClassNotFoundException ex = handles.lookupException(passHandle);
526 * @throws ClassNotFoundException if the class of a serialized object
534 throws IOException, ClassNotFoundException
609 * <code>ClassNotFoundException</code> and the name of the passed
615 * Otherwise, the <code>ClassNotFoundException</code> will be thrown to
621 * @throws ClassNotFoundException if class of a serialized object cannot
625 throws IOException, ClassNotFoundException
630 } catch (ClassNotFoundException ex) {
678 * will throw a <code>ClassNotFoundException</code> containing the
686 * @throws ClassNotFoundException if the proxy class or any of the
692 throws IOException, ClassNotFoundException
720 throw new ClassNotFoundException(null, e);
825 * @throws ClassNotFoundException If the Class of a serialized object used
831 throws IOException, ClassNotFoundException
1480 * ClassNotFoundException will be associated with the class' handle in the
1491 ClassNotFoundException resolveEx = desc.getResolveException();
1503 * resolved to a class in the local VM, a ClassNotFoundException is
1539 * ClassNotFoundException is associated with the descriptor's handle.
1559 ClassNotFoundException resolveEx = null;
1563 resolveEx = new ClassNotFoundException("null class");
1574 } catch (ClassNotFoundException ex) {
1590 * ClassNotFoundException is associated with the descriptor's handle.
1606 } catch (ClassNotFoundException ex) {
1612 ClassNotFoundException resolveEx = null;
1617 resolveEx = new ClassNotFoundException("null class");
1621 } catch (ClassNotFoundException ex) {
1678 ClassNotFoundException resolveEx = desc.getResolveException();
1735 ClassNotFoundException resolveEx = desc.getResolveException();
1766 * class is unresolvable (in which case a ClassNotFoundException will be
1796 ClassNotFoundException resolveEx = desc.getResolveException();
1846 } catch (ClassNotFoundException ex) {
1881 * ClassNotFoundException) instance data for each serializable class of
1904 } catch (ClassNotFoundException ex) {
3317 (ClassNotFoundException) entries[target]);
3347 * Associates a ClassNotFoundException (if one not already associated)
3352 void markException(int handle, ClassNotFoundException ex) {
3438 * associated ClassNotFoundException.
3447 * Looks up and returns ClassNotFoundException associated with the
3449 * if there is no ClassNotFoundException associated with the handle.
3451 ClassNotFoundException lookupException(int handle) {
3454 (ClassNotFoundException) entries[handle] : null;