[nntprss-commit] nntprss/src/org/methodize/nntprss/util HttpUserException.java, 1.6, 1.7
Status: Beta
Brought to you by:
jasonbrome
|
From: Jason B. <jas...@us...> - 2007-12-17 04:17:31
|
Update of /cvsroot/nntprss/nntprss/src/org/methodize/nntprss/util In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv1970/src/org/methodize/nntprss/util Modified Files: HttpUserException.java Log Message: Minor updates Index: HttpUserException.java =================================================================== RCS file: /cvsroot/nntprss/nntprss/src/org/methodize/nntprss/util/HttpUserException.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** HttpUserException.java 17 May 2006 04:13:38 -0000 1.6 --- HttpUserException.java 17 Dec 2007 04:17:34 -0000 1.7 *************** *** 3,7 **** /* ----------------------------------------------------------- * nntp//rss - a bridge between the RSS world and NNTP clients ! * Copyright (c) 2002-2006 Jason Brome. All Rights Reserved. * * email: nn...@me... --- 3,7 ---- /* ----------------------------------------------------------- * nntp//rss - a bridge between the RSS world and NNTP clients ! * Copyright (c) 2002-2007 Jason Brome. All Rights Reserved. * * email: nn...@me... *************** *** 38,48 **** public class HttpUserException extends Exception { ! private int status; ! public HttpUserException(int status) { ! this.status = status; ! } ! public int getStatus() { ! return status; ! } } --- 38,51 ---- public class HttpUserException extends Exception { ! private static final long serialVersionUID = -8653391878322255929L; ! private final int status; ! ! public HttpUserException(int status) { ! this.status = status; ! } ! ! public int getStatus() { ! return status; ! } } |