Code Search for Developers
 
 
  

ArticleNotFoundException.java from crlove at Krugle


Show ArticleNotFoundException.java syntax highlighted

package com.witfriend.arthemis.domain.exception.article;

import java.io.Serializable;

import com.witfriend.arthemis.domain.Article;
import com.witfriend.zeus.domain.exception.ObjectNotFoundException;

/**
 * DOCUMENT ME!
 * @author wangyz
 * @since 2006.10.07
 * @version $Id$
 */
public class ArticleNotFoundException extends ObjectNotFoundException {	
	private static final long serialVersionUID = 8066494760473480703L;
	
	/**
	 * DOCUMENT ME!
	 * @param id
	 */
	public ArticleNotFoundException(Serializable id) {
		super(Article.class, id);
	}
}




See more files for this project here

crlove

Online psychological-test-based friend-making system.

Project homepage: http://sourceforge.net/projects/crlove
Programming language(s): Java,JavaScript,Ruby,XML
License: other

  ArticleExistedException.java
  ArticleNotFoundException.java