s243a

ArchiveRestartException.java (freenet.client)

Oct 22nd, 2014
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.68 KB | None | 0 0
  1. // s243a pearltree node: http://www.pearltrees.com/s243a/java-freenet-client/id12827724
  2. /* This code is part of Freenet. It is distributed under the GNU General
  3.  * Public License, version 2 (or at your option any later version). See
  4.  * http://www.gnu.org/ for further details of the GPL. */
  5. package freenet.client;
  6.  
  7. /**
  8.  * Thrown when we need to restart a fetch process because of a problem
  9.  * with an archive. This is usually because an archive has changed
  10.  * since we last checked.
  11.  */
  12. public class ArchiveRestartException extends Exception {
  13.  
  14.     private static final long serialVersionUID = -7670838856130773012L;
  15.  
  16.     public ArchiveRestartException(String msg) {
  17.         super(msg);
  18.     }
  19. }
Add Comment
Please, Sign In to add comment