KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > commons > exception > ObjectNotFoundException


1 /***************************************************************************
2  * Copyright 2001-2003 The eXo Platform SARL All rights reserved. *
3  * Please look at license.txt in info directory for more license detail. *
4  **************************************************************************/

5 package org.exoplatform.commons.exception;
6 /*
7  * @author: Tuan Nguyen
8  * @version: $Id: ObjectNotFoundException.java,v 1.2 2004/04/06 21:07:18 tuan08 Exp $
9  * @since: 0.0
10  * @email: tuan08@yahoo.com
11  */

12 public class ObjectNotFoundException extends Exception JavaDoc {
13   
14   public ObjectNotFoundException(String JavaDoc s) {
15     super(s) ;
16   }
17   
18 }
19
Popular Tags